I looked at travelgear catalog.xml and a few other places suggested in relation to Magento -- as I want to have Related products showing by default in tab on Product View page.
Either that or on right column -- code does not seem to be there -- how to enable Related Products please
2 answers
Hi tina,
We don’t support Related Products on this theme.
We only support Upsell product.
Please setup it and let me know if you see it working fine.
Thanks
Best regards,
Ziven.
Dear Tina,
To enable Related Products on right side bar of products detail page, you can edit file \app\design\frontend\default\jm_travelgear\layout\catalog.xml, at line 197 replace this rule:
<reference name="right">
<block type="joomlart_jmproductsslider/list" name="category.jmproductsslider" before="catalog.compare.sidebar" template="joomlart/jmproductsslider/bestseller.phtml" >
<action method="setData"><key>mode</key><value>best_buy</value></action>
</block>
</reference>
With:
<reference name="right">
<block type="joomlart_jmproductsslider/list" name="category.jmproductsslider" before="catalog.compare.sidebar" template="joomlart/jmproductsslider/bestseller.phtml" >
<action method="setData"><key>mode</key><value>best_buy</value></action>
</block>
<block type="catalog/product_list_related" name="catalog.product.related" as="related_products" template="catalog/product/list/related.phtml"/>
</reference>
Note: Please disable cache in your site’s backend (System >> Cache Management) before do this.