Quote:
Originally Posted by Freakmode
Is there a way of not loading a module on the home page but loading on all of the other pages?
I know you can use the following to only load in the homepage but I can't work out the logic.
{if $main eq "catalog" and $current_category.category eq ""}
Call module here
{/if}
Thanks
|
What about
:
Code:
{if $main eq "catalog" and $current_category.category eq ""}
Don't call module
{else}
Call module
{/if}
?
