SBlueman
12-15-2007, 10:00 PM
Step 1: Create a file called rss.php and add this to the file:
<?
header("Location: http://yoursite.com/forum_feed_address");
?>
Example: On my site this is the addess I have entered: http://gridironfans.com/forums/external.php?type=RSS2&forumids=109&order=1
Step 2: Upload to your root directory folder (http://yoursite.com/")
Step 3: Template Edit:
AdminCP/Style Manager/All Style Options
In headerinclude:
Find:
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed" href="external.php?type=RSS2" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="external.php?type=RSS2&forumids=$foruminfo[forumid]" />
Change To:
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed" href="http://yoursite.com/rss.php" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="http://yoursite.com/rss.php" />
(Don't forget to edit both instances of "http://yoursite.com/rss.php" to the correct path)
<?
header("Location: http://yoursite.com/forum_feed_address");
?>
Example: On my site this is the addess I have entered: http://gridironfans.com/forums/external.php?type=RSS2&forumids=109&order=1
Step 2: Upload to your root directory folder (http://yoursite.com/")
Step 3: Template Edit:
AdminCP/Style Manager/All Style Options
In headerinclude:
Find:
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed" href="external.php?type=RSS2" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="external.php?type=RSS2&forumids=$foruminfo[forumid]" />
Change To:
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed" href="http://yoursite.com/rss.php" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="http://yoursite.com/rss.php" />
(Don't forget to edit both instances of "http://yoursite.com/rss.php" to the correct path)