How to hide tags showing on blogs in flow theme

Topic summary

A user seeks to hide tags displayed on blog pages in the Flow theme, as the theme lacks a built-in option for this.

Two solutions were provided:

  1. JavaScript approach: Add custom code to the theme.liquid file, placed above the </body> tag, to hide tag elements via script.

  2. CSS approach: Insert CSS code into theme.min.css targeting the specific class .grid__item.large--one-quarter.blog-template--individual with display: none; to hide the tags.

Current status:

The user followed up asking how to center an element (based on a screenshot), suggesting they may have implemented one solution but encountered a layout issue. The discussion remains open with this new centering question unanswered.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

Hi how can I hide tags showing on blog page.

In theme there is no feature to do it.

Shop url - https://50ef2d-2.myshopify.com/blogs/news

1 Like

Hey @hem0903

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @hem0903

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.min.css and paste this at the bottom of the file:
.grid__item.large--one-quarter.blog-template--individual {
display: none;
}

1 Like

Ho can i move it to center