1
Hi,
I set in theme.html a table that I want to show in the homepage. it shows one table if you are registered and another if you are not, like this:
<{if !$xoops_isuser}>
show table one
<{else}>
show table two
<{/if}>
this works pretty well, but it shows the tables on all pages, and I only want it on the homepage. Is there a way of doing something similar, but also testing if it is the homepage? something like <{if !$xoops_isuser AND THIS IS THE HOMEPAGE}>
Thanks