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
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:
JavaScript approach: Add custom code to the theme.liquid file, placed above the </body> tag, to hide tag elements via script.
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.
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
Hey @hem0903
Follow these Steps:
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @hem0903
.grid__item.large--one-quarter.blog-template--individual {
display: none;
}