You can add following meta tag to the pages you want to hide the countdown from.
<meta name="sellify:uct:active" content="false" />
Here are steps to add the meta tag:
- Visit Themes page in your shopify admin.
- Click on 'Actions' in front of 'Current Theme' section and click 'Edit Code' in the dropdown.
- Open 'theme.liquid' from 'Layout' directory. It will open 'theme.liquid' in editor.
- Add the meta tag code provided above before </head> conditionally.
Example: To hide from product page:
{% if template.name == 'product' %} <meta name="sellify:uct:active
" content="false" /> {% endif %}
To hide from collections page:
{% if template.name == 'collection' %} <meta name="sellify:uct:active
" content="false" /> {% endif %}
Contact us if you don't know how to add meta tags and we'll help you.