Page 1 of 1

display only options with sku

Posted: Sat Dec 08, 2012 6:03 am
by pluto
Hey,

Can somebody tell me how to display only the options where there is a sku for that Item?

Is this just a property I must enable?

This is the code I'm using to show the possible options.

Code: Select all

<tr class="first" th:each="productOption : *{productOptions}" th:object="${productOption}"  >
<td class="first"><label th:text="*{label}"></label>: </td>
           <td class="left">
             <select id="select">
                <option  th:each="optionValue : *{allowedValues}" 
               th:object="${optionValue}" th:text="*{attributeValue}"></option>
       </select>
          </td>
</tr>





Best regards,

Pluto

Re: display on options with sku

Posted: Sun Dec 16, 2012 11:13 am
by pluto
I think it's only possible to fix by overriding the productimpl.

Now it's working.