View Single Post
  #2  
Old 03-21-2011, 07:07 AM
  DrQuietus's Avatar 
DrQuietus DrQuietus is offline
 

Advanced Member
  
Join Date: Dec 2005
Posts: 81
 

Default Re: how to show horizon categories in cart page ?

I think this is what you need:

on
/artistictunes_car_tires/customer/content.tpl

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

to:
Code:
<div id="right-bar"> {include file="customer/left_bar.tpl"} </div>

or this, if you want the menus off the checkout page(s) still:
Code:
{if $main neq 'checkout'} <div id="right-bar"> {include file="customer/left_bar.tpl"} </div> {/if}
__________________
Dave Jones
dave@industrialwebworks.net
Mostly 4.7.2 - 4.7.5
Reply With Quote