Hide countdown timer on Homepage only Prestige

Solved

Hide countdown timer on Homepage only Prestige

M161
Tourist
10 0 3

Hi,

 

Can somebody help me hide the countdown timer ONLY on the homepage? website is lash-ease.com

Thanks!

Accepted Solution (1)

Moeed
Shopify Partner
7135 1926 2351

This is an accepted solution.

Hey @M161 

 

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 </body> tag

{% if template == 'index' %}
<style>
.countdown-condensed {
    display: none !important;
}
</style>
{% endif %}

RESULT:

Moeed_0-1741809732745.png

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Reply 1 (1)

Moeed
Shopify Partner
7135 1926 2351

This is an accepted solution.

Hey @M161 

 

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 </body> tag

{% if template == 'index' %}
<style>
.countdown-condensed {
    display: none !important;
}
</style>
{% endif %}

RESULT:

Moeed_0-1741809732745.png

 

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

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications