PDA

View Full Version : Smarty to Show on Homepage Only


Fallback
04-28-2010, 06:46 PM
What is the smarty code I can use in the templates to only show something only on the directory homepage and not any other pages?

I have some php that I would only like to execute on the main page.

Any help will be appreciated. Thanks!

Greg
04-28-2010, 07:16 PM
This should work. Free Version.
{if $category.id == 0}
Content here.This content will only show on your main page.
{/if}

smartpc
04-28-2010, 08:15 PM
You also do from the backend using blocks to display only on home page... Pro Version

Admin Panel - Manage Blocks - New or Edit Block - If the block is set on sticky click off and other page display options appear - select home and save.

Fallback
04-29-2010, 01:57 PM
Thanks guys. Tried Gregs way (saw it first) and it worked perfectly.