Quote:
|
I'm looking to put some text and maybe some outbound links on the homepage, but I don't want it to appear on all the other pages.
|
Code:
{if $category.ID eq 0 and !p and !q}
YOUR TEXT HERE
{/if}
Code:
What about putting this text on the category and sub category pages, but not the pages which contain the links?
Code:
{if $category.ID gt 0 and (!isset($links) || empty($links)) and (!isset($feat_links) || empty($feat_links))}
YOUR TEXT HERE
{/if}
Hope this helps.