Forums

Remove tag label (3 posts)

  1. jamesjoyce
    Member
    Posted 3 years ago #

    Hi,

    My website: http://d-eye.be
    I'm using the iNove theme.

    Question: I'm not using tags but the tag icon appears and I'd like to hide it when not using tags.

    In single.php there's this line:

    <?php if ($options['tags']) : ?><span class="tags"><?php the_tags('', ', ', ''); ?></span><?php endif; ?>

    This seems correct.

    Anyone who knows how to solve this?

  2. scribu
    Member
    Posted 3 years ago #

    It's added from CSS. Look in your style.css and remove the background: url(...) line

  3. Justin Tadlock
    Member
    Posted 3 years ago #

    Don't remove anything from your style.css file. That'll remove the icon when tags are displayed.

    The problem is the theme doesn't properly add the <span class="tags"> here, which causes it to always show, even when no tags are present.

    Change it to this instead:

    <?php if($options['tags']) the_tags('<span class="tags">', ', ', '</span>'); ?>

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags