Magento 1.9 Multi Store different super attribute values

300 Views Asked by At

I have 2 stores and create CF products using import. How do I control the super attribute values for the second store as they are different to the values used for the default store?

1

There are 1 best solutions below

0
César Hernández On

You just need to add the proper values to the attributes needed.

Let's say an attribute shoe_size.

For EU store will have values: 40, 41, 42, 43, 44 and 45 For USA store will have values: 8, 9, 9.5, 10, 10.5 and 11.

So attribute shoe_size must have all those values included.

If you don't want to show all those values in product page or filters you can modify this in frontend displaying what you want or create two attributes: shoe_size_eu and shoe_size_usa.

Regards.