Quote:
Originally Posted by hydn
Quick question:
I want to show a splash image but ONLY on the link_main (local_link.php front page).
I added the code to the link_main template. Is there an "if condition" for the template or any other way I can restrict this to only the local_links.php front page? For now it's showing up on ALL local_links pages.
Thanks.
|
Yes, indeed. $viewcatid will be set to -1 if you are on the front page. So put in a test such as
Code:
<if condition="$viewcatid==-1"> .. show image .. </if>