1
I just spent an hour searching and now out time. I want to add a smarty (if) switch to my theme to execute an action when the home page is displayed. I tried
<{if xoops_page == "top"}>Do this<{/if}>
but that did nothing.
I have been successfully using
<{if $xoops_pagetitle == "home"}>Do this<{/if}>
but now I want to put a slogan in the title and want to change it periodically but don't want to have to modify the theme file each time.
So does anyone know what can be used to identify the home page?