-
- zep007

-
Total Posts: 131
Joined: 2008-05-15
Connecticut
|
When building configurable products, has anyone else noticed that the box to input the price for the given option is no longer there, and when changing the boxes above the simple-associated products, nothing is reflected in the products.
So I can still build a configurable product by creating the product, going into each product individually, then changing the price, and saving it. But that takes forever.
Please let me know if I should report this as a bug, anyone else with this issue?
|
| |
-
- Posted: September 16 2008
-
| top
-
|
 |
 |
 |
|
|
-
- Michael

-
Total Posts: 826
Joined: 2007-08-31
|
Works fine for me (see the attached image).
Can you please post here the screenshot of your “Associated Products” tab here ?
Image Attachments
Click thumbnail to see full-size image
|
| |
-
- Posted: September 17 2008
-
| top
| # 1
-
|
 |
 |
 |
|
|
-
- zep007

-
Total Posts: 131
Joined: 2008-05-15
Connecticut
|
Yes this section does appear, but only after the simple product is created. The focus of attention needs not to be in this section, but above it.
When a configurable option is chosen from the dropdown box, normally another box for the price of the option would appear below the dropdown, before you hit the simple product create button.
After the update, the box for the option’s value does not appear, you only see the options and values in the window below (like your screenshot)
Does this clearify?
|
| |
-
- Posted: September 17 2008
-
| top
| # 2
-
|
 |
 |
 |
|
|
-
- Michael

-
Total Posts: 826
Joined: 2007-08-31
|
zep007 - 17 September 2008 04:48 AM Yes this section does appear, but only after the simple product is created. The focus of attention needs not to be in this section, but above it.
When a configurable option is chosen from the dropdown box, normally another box for the price of the option would appear below the dropdown, before you hit the simple product create button.
After the update, the box for the option’s value does not appear, you only see the options and values in the window below (like your screenshot)
Does this clearify?
Frankly speaking, no. Can you post a screenshot ?
|
| |
-
- Posted: September 17 2008
-
| top
| # 3
-
|
 |
 |
 |
|
|
-
- zep007

-
Total Posts: 131
Joined: 2008-05-15
Connecticut
|
Here is the screen shot you requested.
If you look at the screenshot you will see I do have the box listed below to assign values to the attributes. This box only appears after a simple product with the attribute is created.
After the attribute is created you can put in a value, hit save, then create other products with this value. Unfortunately you have to go into the simple product and change the price manually for each product you used the option on first.
Post back if it needs more explaining
Image Attachments
Click thumbnail to see full-size image
|
| |
-
- Posted: September 17 2008
-
| top
| # 4
-
|
 |
 |
 |
|
|
-
- zep007

-
Total Posts: 131
Joined: 2008-05-15
Connecticut
|
Still there Mike?
|
| |
-
- Posted: September 19 2008
-
| top
| # 5
-
|
 |
 |
 |
|
|
-
- shashi_lo

-
Total Posts: 23
Joined: 2008-05-14
|
I am having the same problem but with 1.1.6
|
| |
-
- Posted: October 30 2008
-
| top
| # 6
-
|
 |
 |
 |
|
|
-
- harkman

-
Total Posts: 60
Joined: 2008-01-06
Ravensburg, Germany
|
Any news on this topic?
This is a huge problem. We created some Configurable products with about 700 underlying simple products. All these simple products now share the same base price.
The problem with this behaviour is, that now you can not order these single products from the backend. To be precise, you can order them but all with the wrong price, the base price.
The Quick Create function needs to calculate the price for the single product and save it to it.
Otherwise the backorder renders useless to a majority of shop owners.
There needs to be a fix for this.
|
| |
-
- Posted: December 19 2008
-
| top
| # 7
-
|
 |
 |
 |
|
|
-
- harkman

-
Total Posts: 60
Joined: 2008-01-06
Ravensburg, Germany
|
I filed a bugreport for this http://www.magentocommerce.com/bug-tracking/issue/?issue=4743
|
| |
-
- Posted: January 8 2009
-
| top
| # 8
-
|
 |
 |
 |
|
|
-
- harkman

-
Total Posts: 60
Joined: 2008-01-06
Ravensburg, Germany
|
Because this issue made me sick I hunted this bug down.
As noticed in the topic this bug was introduced with 1.1.5 and with this update the Prototype JavaScript library was updated from 1.5.x to 1.6.0
This bug is not a magento bug but a Prototype bug.
To solve it open magento\js\prototype\prototype.js
Go to line 567.
if (Object.isFunction(object.toTemplateReplacements))
Replace it with
if (object != null && Object.isFunction(object.toTemplateReplacements))
Empty your browsers cache and get back the painfully missed price input field.
|
| |
-
- Posted: January 9 2009
-
| top
| # 9
-
|
 |
 |
 |
|
|