Related Products are not showing with template Travelgear.

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

Profile photo of Ziven Staff 100280.00 $tone November 10, 2014
Public

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.

#1
Profile photo of Seoki Lee 1510.00 $tone November 10, 2014
Public

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.
 
 
 
 

#2

Please login or Register to Submit Answer

Written By

Comments