What items need to be activated on my informational pages (like /about-us) so that my added custom product fields will show in the Mini-Basket?
I've added the following to the mini-basket coding and on the product detail page it's all as it should be. That's it though. On the category, informational and checkout pages, the custom fields don't show.
I've added the following to the mini-basket coding and on the product detail page it's all as it should be. That's it though. On the category, informational and checkout pages, the custom fields don't show.
Code:
<mvt:if expr="NOT ISNULL l.settings:product:customfield_values:customfields:Color"> <br /> <span class="bold">&mvt:customfield_names:customfields:Color;:</span> &mvt:product:customfield_values:customfields:Color; </mvt:if> <mvt:if expr="NOT ISNULL l.settings:product:customfield_values:customfields:Size"> <br /> <span class="bold">&mvt:customfield_names:customfields:Size;:</span> &mvt:product:customfield_values:customfields:Size; </mvt:if>
Comment