Posted by galetrail on March 25, 2009 at 5:44pm
Two issues that I can't seem to resolve or find a clear answer on drupal.org
1) How do I remove the rss button from the front page?
2) How do I fix the RSS button on my blog to feed the blog and not my front page "page"?
my site is www.galemarketvelocity.com
Thanks
Matt
Drupal Newbie
Comments
=-=
your blog has a feed see: http://www.galemarketvelocity.com/blog at the bottom
every list in drupal generates a feed. AFAIK, there is no way to tell drupal's front page listing which is rss.xml to be something other than it is.
you can create a list of feeds if you so choose.
Hi. Is there somewhere one
Hi.
Is there somewhere one could get a list of all the atom/rss feeds generated by their drupal install?
I have been searching all over the site without any luck.
I too have been looking for
I too have been looking for more information on this subject.
For just Feeds try Syndication
The Syndication module specialises in showing Feeds
Try the Site map module
http://drupal.org/project/site_map
--Ben Finklea, CEO
Volacci
2 possible, somewhat advanced solutions
Re 1)
- Create a specific template for the frontpage, page-front.tpl.php, and remove the bit that prints the RSS-icon, or
- Install the Views module, and enable the Frontpage view, then set the frontpage to path 'frontpage' in the Site Information setting (under the Site Configuration admin menu). Then remove the feed from that View.
The second bit assumes that you know a little about Views, the first that you know a little about templates.
Within page.tpl.php, half way
Within page.tpl.php, half way down find the line that reads
"
<?phpprint $feed_icons;
?>
That was my fix and gets rid of it permanently - not ideal though if you only want the odd page icon removed.