Quote:
Originally Posted by KW802
 Thanks! I just updated mine to have the forums change. I stuck mine in a else conditional though.
Code:
<if condition="$vboptions[externalrss]">
<if condition="$foruminfo[forumid] != ''">
<link href="$vboptions[bburl]/external.php?type=rss2&forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts in $foruminfo[title]">
<else/>
<link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts">
</if>
</if>
I seem to remember coming across an external.php hack somewhere that will accomodate sub-forums so I'm searching for that now. BTW: Thanks to you I'm now playing around with Opera as part of my standard testing. 
|
Cool! One thing I just corrected in mine was the correct XHTML closing slash. So, your example would be this:
Code:
<if condition="$vboptions[externalrss]">
<if condition="$foruminfo[forumid] != ''">
<link href="$vboptions[bburl]/external.php?type=rss2&forumids=$foruminfo[forumid]" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts in $foruminfo[title]" />
<else/>
<link href="$vboptions[bburl]/external.php?type=rss2" rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - Latest Posts" />
</if>
</if>