Removing "Tags" from teaser


Author Message
Enrico

Posted: 11/7/2010
Quote message 

Hello, I'm really new to Artisteer - using its 2.5 version for Mac, but not a Drupal newbie. I'm trying to remove the "Tags" in the link section under the teaser (visible in both the teaser and the full node).

I tried to modify the following strings in node.tpl.php, but unfortunately it doesn't work. Drupal seems to ignore the teaser variable.
<?php if (!$teaser and is_art_links_set($node->links) || !empty($terms)):

$output = art_node_worker($node);
if (!empty($output)): ?>
<?php //echo $output; ?>


Drupal is version 6.x. Any help would be really appreciated.
 
Lawrence

Posted: 11/9/2010
Quote message 

Try this,

Go to the page (Teaser pages of course) that you're trying to remove the tags from in Google Chrome. Right click a teaser and click "Inspect Element". Look at the class of those tags now.

Try this code.

.class {
display: none;
}

Simple code, but should work. If it doesn't, reply and I'll see if I can figure something out.
 
Lawrence

Posted: 11/9/2010
Quote message 

Forgot to mention, that should go at the end of the style.css file. You probably knew that already, but better safe than delayed. :-)