That's much cleaner-looking than the previous suggestions, Shaman.
To protect my small changes from being overwritten when the core themes are updated, I'm using the Custom CSS module (http://drupal.org/project/customcssjs). Works like a charm! I'm new to all this, but it seems like a cleaner solution, too.
I added this to my sites/all/themes/mytheme/css/local.css (and it worked)
.feed-icon img {
display:none;
}
That seems exactly what that local.css file is for and won't get overwritten with an update to the theme. Is there anything wrong with doing it this way?
Note that if you're using Views module to generate front page, the default Front page view adds the RSS feed icon ('Front page feed') on the bottom of the page. To disable it:
Go to: admin/build/views/edit/frontpage
Select Feed-tab
Down in Feed settings click on Attach to: Multiple displays
The problem with doing it through views is that it removes the feed from being listed to the browser as well as having the effect of not showing the icon. The feed is still there because its a view but if it is not lined to the view the icon will not show up nor will the icon on the address bar in the browser.
same. i hear this is a template issue. such a shame for something that's so built in and simplistic like wordpress. although i hate wordpress. i WANT the little rss icon on the front page, and its not showing up. it did for like five minutes, then i changed a setting and now its gone.
There is a file named feed.png at /public_html/misc folder. Rename this file to back_up_feed.png. This will will cause the RSS icon to disappear from your pages!
In case you wish to restore the icon at a later stage, you can always rename back_up_feed.png to feed.png
Drupal 7.x
Creating a local.css file did the trick! (on local test site)
After putting on hosted website, it came back. Will try renaming it.
Renaming it made it worse, now it says 'Subscribe to mysite RSS' Geesh!
batigolix solution stops the subscribe but not the 'Read More' link. (thru hook_menu_alter)
Drupal 7.x
This is still the top result when searching for "drupal 7 remove rss icon", so here's the solution which works for me today. I hope someone finds it useful.
I noticed that regions were in the markup even when I specifically disabled them in Structure>Context>MyContext>Reactions>Regions. This was a clue.
The other clue was seeing some unexpected admin tabs along the right edge of the page. These are theme debug buttons.
Solution: Under Appearance>MyTheme>Settings>Layout Configuration>Debugging, uncheck the boxes for
*Enable the debugging (placeholder) blocks for the selected roles.
*Enable the grid overlay for the selected roles.
Now MyContext correctly has no markup for the disabled regions AND the unwanted RSS icon has disappeared from all pages! The theme debug buttons are gone and I'm a happy camper!
Comments
have a look on
have a look on :
http://drupal.org/node/28336
page.tpl.php
Or easier: remove the following from your page.tpl.php:
print $feed_icons;thanks
I appreciate your help.
page.tpl.php removal didn't work for me
Using drupal 6 and the Sky theme... removing the following did NOTHING for me.
Clear your cache
At admin/settings/performance you can clear the cache.
doesnt help!
Clearing the cache doesn't help, any suggestions?
Found it!
along with the deletion from the page.tpl.php,
I had to go to the theme file (chameleon in my case), browse to line #94 and deleted:
$output .= drupal_get_feeds();
that did the trick!
In style.css .feed-icon img
In style.css
.feed-icon img {
display:none;
}
Even cleaner if implemented outside style.css?
That's much cleaner-looking than the previous suggestions, Shaman.
To protect my small changes from being overwritten when the core themes are updated, I'm using the Custom CSS module (http://drupal.org/project/customcssjs). Works like a charm! I'm new to all this, but it seems like a cleaner solution, too.
EVEN Better?
I added this to my sites/all/themes/mytheme/css/local.css (and it worked)
.feed-icon img {
display:none;
}
That seems exactly what that local.css file is for and won't get overwritten with an update to the theme. Is there anything wrong with doing it this way?
Thanks!
Removing it from the theme did it!!! Thanks!
You don't have to chop up your core files
Just open up style.css and add display:none to the .feed-wrapper
Like so:
.feed-wrapper {
float:right;
margin-top:7px;
margin-right:20px;
display: none;
}
That worked.
Thanks. Adding the "display: none;" removed the RSS icon from my Danland theme.
Remove RSS feed icon caused by Views module
Note that if you're using Views module to generate front page, the default Front page view adds the RSS feed icon ('Front page feed') on the bottom of the page. To disable it:
admin/build/views/edit/frontpageThank you for the tips.
Thank you for the tips.
That worked!
Thanks a lot!
perfect
thanks much!!!!
The problem with doing it
The problem with doing it through views is that it removes the feed from being listed to the browser as well as having the effect of not showing the icon. The feed is still there because its a view but if it is not lined to the view the icon will not show up nor will the icon on the address bar in the browser.
Steve Kessler
Just the Reverse Problem
I use views for my Frontpage and I don't have an RSS Icon but I want one.
http://redesign.arcstudents.com
same. i hear this is a
same. i hear this is a template issue. such a shame for something that's so built in and simplistic like wordpress. although i hate wordpress. i WANT the little rss icon on the front page, and its not showing up. it did for like five minutes, then i changed a setting and now its gone.
i wish drupal would make this simple.
RSS icon disappeared
hi,
I don't know why but the RSS icon disappeared also, and no more rss when visiting http://www.xxxxx.com/rss.php
Can you help ?
Thanks.
The easiest way to remove RSS icon!
There is a file named feed.png at /public_html/misc folder. Rename this file to back_up_feed.png. This will will cause the RSS icon to disappear from your pages!
In case you wish to restore the icon at a later stage, you can always rename back_up_feed.png to feed.png
Anand
This would cause a lot of 404
This would cause a lot of 404 errors, and a 404 image depending on the browser. This is really a non-solution.
There is a module...
that will help you do this: http://drupal.org/project/rss_permissions
Non-programmer solution
If you don't want to mess with any php, css or core files, the following will remove the RSS icon:
In the body of any node on your home page add the following:
<style> .feed-icon img {display:none; } </style>When editing the body, make sure the Text Format is set to Full HTML
see also https://www.drupal
see also https://www.drupal.org/node/944476
You were Awesome, then it came back
Drupal 7.x
Creating a local.css file did the trick! (on local test site)
After putting on hosted website, it came back. Will try renaming it.
Renaming it made it worse, now it says 'Subscribe to mysite RSS' Geesh!
batigolix solution stops the subscribe but not the 'Read More' link. (thru hook_menu_alter)
Theme debug solution
Drupal 7.x
This is still the top result when searching for "drupal 7 remove rss icon", so here's the solution which works for me today. I hope someone finds it useful.
I noticed that regions were in the markup even when I specifically disabled them in Structure>Context>MyContext>Reactions>Regions. This was a clue.
The other clue was seeing some unexpected admin tabs along the right edge of the page. These are theme debug buttons.
Solution: Under Appearance>MyTheme>Settings>Layout Configuration>Debugging, uncheck the boxes for
*Enable the debugging (placeholder) blocks for the selected roles.
*Enable the grid overlay for the selected roles.
Now MyContext correctly has no markup for the disabled regions AND the unwanted RSS icon has disappeared from all pages! The theme debug buttons are gone and I'm a happy camper!
How to remove RSS Feed-icon?
Related: How to remove RSS Feed-icon?