Hello
I would like to know how to remove/disable the checkout/cart header on a few pages, ie all “pages” and the “checkout” section
I searched the posts and found the below instructions, however does not work for cs 2.05
[B]To clarify xmivite’s response:
- Create a new file with your own HTML header and name it newtop.tpl.
- Place it inside the “/skins/CLIENT_SKIN/customer/” directory.
- Edit “/skins/CLIENT_SKIN/customer/main.tpl” and change the following code:
Code:
{include file="top.tpl"}
to:
Code:
{if $content == "checkout"}
{include file="newtop.tpl"}
{else}
{include file="top.tpl"}
{/if}
Thanks for all your help
Hovik