Remove or Disable Checkout/Cart Header on pages

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:


  1. Create a new file with your own HTML header and name it newtop.tpl.
  2. Place it inside the “/skins/CLIENT_SKIN/customer/” directory.
  3. 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}
[/B]

Thanks for all your help
Hovik