Hide countdown timer on Homepage only Prestige

Topic summary

A user seeks help hiding a countdown timer exclusively on their homepage (lash-ease.com) while keeping it visible on other pages.

Solution Provided:

  1. Navigate to Online Store → Edit Code
  2. Locate the theme.liquid file
  3. Insert conditional code above the </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.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Hi,

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

Thanks!

1 Like

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