• Resolved xameliax

    (@xameliax)


    Hi Guys,

    New here – hello! ??

    Just wondering if there’s any way to hide your tags on your front page but keep them showing when you go into a post?

    If someone could help with the code (and how to impliment it) that would be fab!

    If you can explain how to hide tags ffrom the front only and how to hide tags from both the front and the post (incase i decide to do this later) that would be even fabber!

    Thank you in advance!!!

    xax

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi xameliax,

    You can do it by adding the following code in your child theme‘s style.css file or by add the custom code in the My custom css plugin to preserve the changes even after further updates

    To remove the tags only from the front page or Home page add the below code.

    .home .entry-footer {
        display: none;
    }

    and to remove it from every where add the below

    .entry-footer {
        display: none;
    }

    Hope it helps!

    Thanks

    Thread Starter xameliax

    (@xameliax)

    Ah thank you so much!!! ??

    xax

    You are welcome ??

    Thread Starter xameliax

    (@xameliax)

    Hi Maruti,

    Me again!

    Is there any way to remove tags underneath post excerpts on the homepage but show the categories?

    The code you gave me before gets rid of everything ??

    xax

    Hi X,

    You can definitely do it.

    Remove the above css I have suggested and add the below instead

    To remove the tags only from the front page or Home page add the below code.

    .home .tags-links {
        display: none;
    }

    and to remove it from every where add the below

    .tags-links {
        display: none;
    }

    Hope it helps!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Tags on Front Page’ is closed to new replies.