Wayne,
I?ve tried to put this in the forums tools menu but for some reason it creates only the basic information of my forums - but no threadinfo?s.
Code:
<rss version="2.0">
- <channel>
<title>MySiteTitle - MyForumsTitle</title>
<link>http://www.mysite.com/forums</link>
- <description>MySiteDescription !</description>
<language>en</language>
<pubDate>Tue, 17 Jan 2006 14:47:11 GMT</pubDate>
<generator>vBulletin</generator>
<ttl>60</ttl>
</channel>
</rss>
I?m using this in the forums menu (extended to rss 0,91, 2.0 and rdf-feeds)
PHP Code:
<!-- forum tools menu -->
<div class="vbmenu_popup" id="forumtools_menu" style="display:none">
<form action="moderator.php" method="post" name="forumadminform">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[forum_tools]<a name="goto_forumtools"></a></td></tr>
<if condition="$show['newthreadlink']"><tr><td class="vbmenu_option"><a href="newthread.php?$session[sessionurl]do=newthread&f=$foruminfo[forumid]" rel="nofollow">$vbphrase[post_a_new_thread]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread&f=$foruminfo[forumid]" rel="nofollow">$vbphrase[mark_this_forum_read]</a></td></tr>
<tr><td class="vbmenu_option"><a href="subscription.php?$session[sessionurl]do=addsubscription&f=$foruminfo[forumid]" rel="nofollow">$vbphrase[subscribe_to_this_forum]</a></td></tr>
<if condition="$show['rss']">
<tr><td class="vbmenu_option"><a href="external.php?type=rss2&forumids=$foruminfo[forumid]" rel="nofollow">$vbphrase[subscribe_to_this_forum_rss]</a>
<a href="external.php?type=rss&forumids=$foruminfo[forumid]" rel="follow" target="_blank"><img class="inlineimg" img border="0" src="stylevar[imgdir_misc]/rss.png" lowsrc="RSS Feed 0.91" alt="RSS Feed 0.91"></a>
<a href="external.php?type=rss2&forumids=$foruminfo[forumid]" rel="follow" target="_blank"><img class="inlineimg" img border="0" src="stylevar[imgdir_misc]/rss.gif" lowsrc="RSS Feed 2.0" alt="RSS Feed 2.0"></a>
<a href="external.php?type=rdf&forumids=$foruminfo[forumid]" rel="follow" target="_blank"><img class="inlineimg" img border="0" src="stylevar[imgdir_misc]/rdf.gif" lowsrc="RDF Feed" alt="RDF Feed"></a>
</td></tr>
</if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]f=$foruminfo[parentid]" rel="nofollow">$vbphrase[view_parent_forum]</a></td></tr>
Do I have to place the initial plugin elsewhere as in forumsdisplay_start if I?ld like to place this in the forum menu?
Any idea ?