I want to remove the date from any blog posts on the Impulse Theme. Can some one advise as the best way to edit code to do this?
1 Like
Hi @tetonwaters ,
You should have a settings to hide the date in your theme editor.
- From your Admin Page, click Online Store > Themes > Customize
- Go to the Blog posts
If you cannot see the option, you can use the code below
- From your Admin Page, click Online Store > Themes >Actions > Edit code
- In the Asset folder, open the theme.css.liquid
- Paste the code below at the very bottom of the file.
.article__date {
display: none !important
}
Unfortunately, neither of those options worked. I have unchecked the “show date” box from all our blogs and it still shows up on all blog posts. I tried on individual posts as well.
I also place the code you included at the bottom of theme.css.liquid. Date still shows up on all posts.
Hi @tetonwaters
Do you mind providing your website so we can provide a specific code for you?
https://tetonwatersranch.myshopify.com/ > https://www.tetonwatersranch.com/
Thanks in advance for your assistance.
Hi @tetonwaters
Try the code below
- From your Admin Page, click Online Store > Themes >Actions > Edit code
- In the Asset folder, open the theme.css
- Paste the code below at the very bottom of the file.
article.article time {
display: none!important;
}
That worked. Thank you!!
1 Like


