I have around 500 configurable products that I need to add a new attribute to.

For example, they already have Color as an attribute. How would I go about adding Size to the existing configurable products?

link|improve this question

80% accept rate
feedback

2 Answers

If size is an intended configurable attribute, I'm not sure this will be so easy. Magento does not allow you to redefine the attributes upon which an item is configurable after creation time.

After creating the attribute and adding it to the attribute set, you'll probably need to hack it at the database level to make the attribute configurable. That means your simple child products will also need modification to have a size attribute.

Good luck. Make sure to come back and tell us what you did to make it work.

Thanks, Joe

link|improve this answer
feedback

You define this attribute in attribute set that is used and then update all products with dataflow

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.