• Greetings all.
    I am trying to hide tags and have tried Simple Custom CSS as well as modifying theme CSS with various codes.

    .post-meta {
    display: none;
    }

    .tag-links { display: none; }

    .entry-meta , .tag-links { display: none; }

    None of which have helped.
    Site http://www.joyrichhealthcarecenters.com

    Mainly I would like these removed from all my blog posts.
    Any additional help would be greatly appreciated.

    Thanks in advance.
    Dan

Viewing 8 replies - 1 through 8 (of 8 total)
  • Try this:

    .tag {
    display: none;
    }

    Hi Dan,

    Do you want to hide the tags or remove them all together?

    It looks like the categories on that site are wrapped in elements with the ‘post-category’ CSS class. You could hide them like this:

    .post-category {
        display:none;
    }

    If you want to remove them all together you can delete the code in your theme that displays them. The most common way is to use the_tags() function. Find that, remove it, and you should be set.

    Thread Starter USMCDan

    (@usmcdan)

    I am looking to hide them. I would like them still on site for SEO purposes.
    I tried the one listed above and it removed them but not sure if gone or hidden?

    Thank you both for your quick replies.

    Thread Starter USMCDan

    (@usmcdan)

    Sorry… I tried the following first as it came in first.. .

    .tag {
    display: none;
    }
    and they are not on site now but how can I tell if they are hidden or gone?

    They are hidden not gone.

    Thread Starter USMCDan

    (@usmcdan)

    Thank you so much!

    You are appreciated!

    Dan

    Sorry – Miha was right. I was thinking category not tag.

    Be careful when hiding keywords for SEO purposes. Google tends to frown on it, and it can have the reverse effect on your site.

    Thread Starter USMCDan

    (@usmcdan)

    No worries Dan B.
    I just want to thank both of you for your timely assistance.

    I hope to help others here in areas I am much more familiar with.

    Love the friendliness and help in the support forum.

    All the best!
    Dan

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Hide tags’ is closed to new replies.