Hi,
I have this code:
Code:
<if condition="$show['taglist']">$threadinfo[taglist]
<else />
<if condition="$show['threadinfo']">$threadinfo[title]
<else />
<if condition="$show['foruminfo']">$foruminfo[title_clean]
<else />
Football
</if>
</if>
</if>
What I am trying to do is echo the tags first, then if there are none echo the thread title. then in the forum view echo the forum name and if there is nothing else just say football.
At the minute it echos the tags AND the title.
How can I sort this to check for tags and if there are none use the title?
Thanks