Add new attribute to existing configurable product magento

17,562

Solution 1

Adding the attribute to the attribute set and then updating all the simple products' attributes is not sufficient. Magento asks what 'configurable attributes' to use when you initially create a configurable product; the new attribute will therefore not be applied to existing configurable product(s) and their child products. I've tested the below DB workaround hack on CE 1.6.2 and it seems to be working:

  1. Create attribute
  2. Drag it to appropriate attribute set
  3. Go to phpmyadmin, table ‘catalog_eav_attribute’ and look at the last one, note the ‘attribute id’, also note the product id -> go to catalog_product_entity and look for the configurable product you want, and note entity_id -> this is the product_id
  4. Go to catalog_product_super_attribute and insert new record with product_id and attribute_id, note of the product_super_attribute_id
  5. Go to catalog_product_super_attribute_label and insert new record with product_super_attribute_id and the value of your new attribute, like ‘Color’ or ‘Size’ which you used when adding the attribute in the admin
  6. Go back to admin and click the configurable product, you will notice none of your child products is associated to your configurable product.
  7. Click one of the child products, and select appropriate attribute value, you may also change the sku.
  8. Export all child products and add the new attribute and sku values to it, import it back and you are done or you may have to manually change all in the admin without using the dataflow.

credit: http://www.magentocommerce.com/boards/viewthread/43288/#t330918

Solution 2

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

Solution 3

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

Solution 4

Try adding attribute when a editing product rather than in the 'Manage Attributes" section.

For me it then auto adds itself into that products Attribute set and also to all other products in that attribute set.

Actually i have no trouble now using the 'Manage Attributes' section to add new attributes.

Share:
17,562
AntoNB
Author by

AntoNB

Just an entrepreneur learning the ropes.

Updated on June 17, 2022

Comments

  • AntoNB
    AntoNB almost 2 years

    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?

  • Anton S
    Anton S almost 11 years
    with magento built in import export functionality: export, change, import
  • Jon
    Jon almost 10 years
    This also works with CE 1.9.0.1 - thanks for the info Joeymetro