How can I remove the RSS icom (the "XML" image) that shows up on taxonomy term pages?

A page like /taxonomy/term/3 for example lists all the nodes associated with that term and there is an RSS icon a the very bottom.

A more general question would be: how can I customize this page?

Thanks,
Marius

Comments

briandelicata’s picture

In your css file add this:

.xml {
display:none;
}

mariuss’s picture

Thanks for the tip, it worked. The class name is "xml-icon" and not "xml".

The second question is still valid, how can I customize the taxonomy pages? Any clues?

Thanks,
Marius

Sougent’s picture

Hi,

See this link for information, basically you can do custom node.tpl.php files to do this.

http://drupal.org/node/23828

Joe

mariuss’s picture

Thanks again, the custome node template worked. To some extent.

I can control the title, where the content goes, the term, etc. What I cannot control is the content itself.

I guess I could ignore the the content variable and print all the fields I am interested in, right? What names would these fields have?

Sougent’s picture

Hi,

What specifically are you trying to do as far as "controlling" content?

Joe

mariuss’s picture

To control what and how fields are displayed. By default it just a list of fiel names, colon and then field value on the next line.

d.b.s’s picture

.feed-icon {
display:none;
}

nadav’s picture