i have a configurable product with some product associated, with attribute Color and Size. I need to modify Color dropdown, adding the name of the associated simple product, something like this:
<select class="required-entry super-attribute-select" id="attribute124" name="super_attribute[124]">
<option value="">Scegli una Opzione...</option>
<option value="1358">PEARL - NAME OF SIMPLE PRODUCT</option>
<option value="691">U9BMNERO(FLAT BLACK) - NAME OF SIMPLE PRODUCT </option>
</select>
How can I do this?
Many Thanks!!