Is there anyway to exclude the product categories (sidebar) from the checkout/cart pages? Thanks in advance!
You’ll have to edit skins/[skin name]/customer/main.tpl.
The code in it that calls the categories sidebox is
{include file=“side_boxes/categories.tpl”}
You can change it to
{if $content != “cart” && $content != “checkout”}
{include file=“side_boxes/categories.tpl”}
{/if}
That will hide the categories sidebox in checkout/cart pages.