I am trying to add an RSS feed link for a given forum to our
display options block for that forum but am not sure how to (or even if it is possible) , I have tried replacing the forum number of the rss url with
http://www.webxpertz.net/forums/external.php?type=rss&forumids=$forum[forumid]
which just produces
http://www.domain_name.net/forums/ex...=rss&forumids=
I also tried to use a conditional with
Code:
<if condition="$forum[forumid]=1">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=1" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=3">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=3" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=75">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=75" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=74">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=74" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=54">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=54" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=4">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=4" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=46">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=46" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=5">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=5" target="_blank">RSS</a>
<elseif />
<if condition="$forum[forumid]=6">
<a href="http://www.domain_name.net/forums/external.php?type=rss&forumids=6" target="_blank">RSS</a>
<else />
:)
</if>
but <elseif /> doesn?t work

is there some other way to do this (I know there must be) any thought would be appreciated.
thanks