How can I conceal blog tags on the Launch theme?

Hello. I have searched the other posts related to hiding tags, but none of the responses work for Launch theme.

Can anyone tell me how to change the css to hide all tags on my blog? They make the page look messy.

Please & thank you!

Hello @NutriTots ,

Please share:

  • your store URL;
  • page URL with the issue you mention;
  • storefront password (if your store has one);
  • Screenshot of the blog tags that you would like to hide.

If the store is not online yet, please follow this quick tutorial to learn how to safely and temporarily share an offline/unpublished theme URL.

Kind regards,
Diego

Show More

Show More

My site is nutritots.com. The page is https://nutritots.com/blogs/learn and then each individual post.

@NutriTots , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.template-blog .post-subtitle > *:nth-child(3){
    display: none !important;
}

Please let me know whether it works.

Kind regards,
Diego

It hid it under the title of the blog on the main page, but it is still present when I click on each blog individually. Also, it is still present on the main blog page under “filter by tag.”

Thank you for your help.

You can replace the previous code with the following:

.post-subtitle > *:nth-child(3),
.blog-tags-wrapper{
    display: none !important;
}

Kind regards,
Diego

You rock!! Thank you!