By mariuss on
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
In your css file add
In your css file add this:
.xml {
display:none;
}
customizing taxonomy pages
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
Custom node.tpl.php
Hi,
See this link for information, basically you can do custom node.tpl.php files to do this.
http://drupal.org/node/23828
Joe
custom node template
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?
Example
Hi,
What specifically are you trying to do as far as "controlling" content?
Joe
To control what and how
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.
Update for Drupal 4.7.2
.feed-icon {
display:none;
}
taxonomy term view
http://drupal.org/node/304850#comment-4813790