Hi everyone,
I am using the Debut theme and have my blog posts as a feed on my homepage. Is there a way stop the tags for each blog post being visible? It looks very messy and so far haven’t been able to find a solution!
My website is www.nhpatterns.com
Thank you!
@nhpatterns
Please Go to Online Store → Themes → Edit code → Assets → theme.css and paste this code at the end of this file.
#shopify-section-162083131017e5bfde li.grid__item .article__tags {
display: none !important;
}
@nhpatterns
Please add the following code at the bottom of your assets/theme.scss.liquid file.
#shopify-section-162083131017e5bfde .article__tags rte{
display: none;
}
Hope this works.
Thanks!
@nhpatterns , do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
[id*='shopify-section'] .article__tags {
display: none !important;
}
This code will work on any Debut theme, it will also work if you add other sections like this one in the future.
Please let me know whether it works.
Kind regards,
Diego
Thank you so much! That worked 
@nhpatterns Thank you for the update.
Only one that worked, thanks