• Hi,

    I’m using wordpress as a shop at https://www.gratefulalive.org. I want to be able to put tags on the product pages, but I don’t want them to show up on the site. ie, I want them to be invisible.

    I’ve read other forum posts that say to add something like:
    tagged_as{display:none}
    to style.css. I’m not sure exactly how to do that, as I’m pretty unfamiliar to coding. Can someone walk me through exactly where to edit style.css so that I can make that change.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Quick and dirty way:

    1. Access the Theme Editor from the Administration > Appearance > Editor menu.
    2. Find style css.
    3. At the end add tagged_as{display:none}

    Proper way:

    1. Create a child theme.
    2. Continue with Quick and dirty way
    Thread Starter steind

    (@steind)

    Thanks so much for the quick response! I still can’t seem to get it to work with the quick and dirty way. Sorry I’m so bad at dealing with this, but where exactly should the tagged_as{display:none} line be included?

    Right now, my style.css looks like this:

    /*
    Theme Name: Virtue

    License: GNU General Public License v3.0
    License URI: https://www.gnu.org/licenses/gpl.html
    tagged_as{display:none}
    */

    I’ve also tried putting the tagged_as line after the */ so that it looks like this:

    /*
    Theme Name: Virtue

    License: GNU General Public License v3.0
    License URI: https://www.gnu.org/licenses/gpl.html
    */
    tagged_as{display:none}

    but neither of those seems to work. Am I making a stupid mistake that’s easily fixed? Thanks so much!

    Just scroll all the way down and paste the code:
    .tagged_as{display:none}

    If that doesn’t work you might also try:

    div.product .product_meta .tagged_as {
    display: block;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Making tags invisible’ is closed to new replies.