I am trying to do this on the sidebar: {if $mod=='quick_checkout'} <div class="one"></div> {else} <div class="two"></div> {/if} It doesn't work becasue i am unsure how to call the module quick checkout. Thanks for reading.
If you are using the Quick Checkout Module then it is active, so it would probably be easier to check for the script being run, which is usercheckout.php. Use the smarty Debug to see the exact variable name.
Great that did it, thanks. Here is the code i used for any one who is interested Code: {if $body=='quick_checkout/checkout/container.tpl'} <div class="one"></div> {else} <div class="two"></div> {/if}