Hi,
Can somebody help me hide the countdown timer ONLY on the homepage? website is lash-ease.com
Thanks!
A user seeks help hiding a countdown timer exclusively on their homepage (lash-ease.com) while keeping it visible on other pages.
Solution Provided:
theme.liquid file</body> tag:{% if template == 'index' %}
<style>
[countdown-timer-selector] { display: none; }
</style>
{% endif %}
This template-specific CSS targets only the homepage (‘index’), hiding the timer while preserving it on other pages. A screenshot demonstrates the expected result. The solution appears complete and actionable.
Hi,
Can somebody help me hide the countdown timer ONLY on the homepage? website is lash-ease.com
Thanks!
Hey @M161
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
{% if template == 'index' %}
{% endif %}
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed