Take off Cart is Empty/Checkout on Home page

I want to take off the content tools on the home page. The Cart icon, the cart is empty, the checkout and the currency. I am trying to make the page tighter.

edit top.tpl…

If I change top.tpl wouldn’t that change it for every page?

In top.tpl use an IF statement around the code you want to remove on the home page.



Something like



{if $controller != ‘index’ } CART CONTENT CODE {/if}



This will execute this code unless it is the homepage.

Thanks Triplets!!