Quote Originally Posted by rlfreshwater View Post
Thank you, Doug, for figuring this out. I am also having an issue with this mod conflicting with WordPress. When I click on the RSS button in my footer it pulls up the feed to my blog instead of my products. [I know you said this only pertained to your system, but I tried everything else with no luck so I decided to try your suggestions.]

I've got a working feed (http://www.queerrepublictees.com/ind...;feed=products) but the problem is I can't get the RSS button to point to it.

I've done exactly what you did:
  • changed $feed = $_GET['feed'] to $feed = $_GET['amp;feed']
  • changed $feed_args = substr($feed, $i+1) to $feed_args = substr($feed, $i+5)
  • changed switch($_GET["feed"]) to switch($_GET["amp;feed"])


... but it's still bringing up the blog instead of the products.
The confusing part is when I hover over the RSS button, in the bottom of my browser I can see:
http://www.queerrepublictees.com/index.php?main_page=rss_feed&feed=products

but if I select the button and look at the source code it points to the correct URL:
http://www.queerrepublictees.com/index.php?main_page=rss_feed&feed=products

There's got to be something really simple that I am overlooking. If anybody can help I'd be most grateful.
Check the includes/functions/extra_functions/rss_feed.php for the function rss_feed_link. Make sure the "'feed=' . $feed" is changed to "'amp;feed=' . $feed" there.