View Single Post
  #2  
Old 08-11-2015, 05:41 AM
  seyfin's Avatar 
seyfin seyfin is offline
 

X-Cart team
  
Join Date: May 2004
Posts: 1,223
 

Default Re: Manuf. Names/Cat. page/Offers

Quote:
Originally Posted by Zizilu
1. I want left bar to only show on home page and products page, how do I do that? all threads want the opposite lol

You can modify the code in this template file:

skin/ideal_responsive/customer/content.tpl

Code:
{if ($main neq 'cart' or $cart_empty) and $main neq 'checkout'} <div id="left-bar"> {include file="customer/left_bar.tpl"} </div> {/if}

You can change the code as follows:

Code:
{if $main eq 'product' or ($main eq 'catalog' and $cat eq 0)} <div id="left-bar"> {include file="customer/left_bar.tpl"} </div> {/if}

Basically, home page has $main set to 'catalog' and $cat set to 0, and all product pages have $main set to 'product'.
__________________
Sincerely yours,
Sergey Fomin
X-Cart team
Chief support group engineer

===

Check this out. Totally revamped X-Cart hosting
http://www.x-cart.com/hosting.html

Follow us:
https://twitter.com/x_cart / https://www.facebook.com/xcart / https://www.instagram.com/xcart
Reply With Quote