hi. wondering if this is a theme issue or a content template module issue - i am specifically trying to remove the "tags" and "links" from teasers display (using fblike theme on drupal 6.1) but even when i add or remove any variables from the content template interface, the links to 'tags' and 'links' still appear (e.g. 'printer friendly version' or 'comments' etc) - even though they do not appear in the custom template and effect output has been selected and submitted...
any thoughts? i've been banging my head against the wall on this one - also tried some suggested code in node.tpl.php from some other forum discussions about this....nothing is working
Comments
Comment #1
jrglasgow commentedContemplate was not written to remove the items you are looking at, it is specifically written to manage the content in the node wrappers, i.e.: teaser, body, RSS item. I don't know of a way to remove these things using Contemplate.
I would change the Theme.
For example, Drupal 6.1 using the Garland theme: This is themes/garland/node.tpl.php
The above is an example of a node.tpl.php file, notice the section:
Originally it was:
You would need to make a custom theme by editing the template files
*.tpl.php.Comment #2
jrglasgow commented