Well, I don't want to disable the feed but only want to remove the RSS feed link that is there for the Taxonomy terms on each taxonomy page. How do I do that?

Comments

manan’s picture

Nobody?

Sinan Erdem’s picture

There is no option to disable them as far as I know. But you can hide it with CSS:

.page-taxonomy .feed-icon {
display: none;
}

You have to check for the class names, since it may be different in your theme...

HelloStephanie’s picture

Go into the view for taxonomy pages and set the feed to be unattached to the page. Voila!

jfrederick’s picture

This works perfectly, assuming you have enabled the Views taxonomy term page View, instead of using the term page as constructed by the taxonomy module itself (default).

vahid.sebto’s picture