The RSS icons in the browser were the url is.

You can see it in Opera and FireFox, but not in IE.

How can I get rid of the orange RSS icon please?

Comments

dman’s picture

It's a BROWSER feature letting you know that the site provides RSS feeds you can subscribe to.

If you choose to not serve RSS to make your news and updates accessable, remove the
[link rel="alternate" type="application/rss+xml" title="RSS" href="http://xx.xxx.xx/node/feed" /]
from your page.

.dan.
How to troubleshoot Drupal | http://www.coders.co.nz/

jason342’s picture

Hi dman,

Remove it from what page exactly? File name pls?

jason342’s picture

I looked in the page.tpl.php, it wasn't there.

Anyone know where is that link so I can delete it?

dman’s picture

Do a 'find in files for the key string "rss+xml"
among other places, the one I think you don't want is in node.module node_page_default()

You can comment out that line that provides a list of top stories.
I'm not sure, but it's possible you could also avoid this behaviour by setting a static front page in settings - that would bypass 'node_page_default'

Note that a few other parts of the site - like taxonomy indexes - also serve rss when appropriate.

.dan.
How to troubleshoot Drupal | http://www.coders.co.nz/

jason342’s picture

anyone?

StevenSokulski’s picture

You need to look (as previously described) for where Drupal is notifying the browser of RSS type data. That is the only way to do this. You cannot force a browser to ignore your RSS data, simply don't tell it you have any. Or turn off the RSS module.

dman’s picture

Thing is, there is no 'rss module' :-/ which is his problem.
RSS is publicised by a few different modules by default, and is not able to be easily disabled.
I don't call it a problem to worry about, but you would expect it would have a switch somewhere.

.dan.
How to troubleshoot Drupal | http://www.coders.co.nz/

zipperhead’s picture

I got rid of the orange RSS icon by removing the line

<?php print $feed_icons ?>

found in the page.tpl.php file. This is for Drupal 5.1 however. Earlier versions may be different.

bob-ca’s picture

thanks, your solution was easy and it worked

did the change on a 5.1 site

-Bob