Solved

How to remove blog tags in Debut theme - homepage

nhpatterns
Tourist
4 0 1

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!

Accepted Solution (1)

Hardik29418
Shopify Partner
2858 407 1073

This is an accepted solution.

@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;
}

 

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email

View solution in original post

Replies 6 (6)

Hardik29418
Shopify Partner
2858 407 1073

This is an accepted solution.

@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;
}

 

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email
nhpatterns
Tourist
4 0 1

Thank you so much! That worked 🙂 

Hardik29418
Shopify Partner
2858 407 1073

@nhpatterns  Thank you for the update.

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email

dmwwebartisan
Shopify Partner
12280 2546 3694

@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!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

diego_ezfy
Shopify Partner
2935 562 883

@nhpatterns, 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.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

◦ Follow my blog & youtube for coding tutorials. Most questions in here are already answered there!
◦ Top #4 Shopify Expert, 24h reply. Click here to hire me.
Download copy/paste code snippets that can replace most apps.

ZaheedaT
Excursionist
39 2 3

Only one that worked, thanks