Hi Shopify Experts,
If “Show on home page only” is selected then show on home page only. Otherwise show on all the pages including home page. How can we achieve it?
{%- if section.settings.show_announcement == true -%}
{%- if section.settings.show_announcement_home == true -%}
{%- if template == 'index' -%}
Home
{%- endif -%}
{%- endif -%}
{%- endif -%}
{% schema %}
{
"name": "t:sections.announcement-bar.name",
"settings": [
{
"type": "checkbox",
"id": "show_announcement",
"default": true,
"label": "Show announcement"
},
{
"type": "checkbox",
"id": "show_announcement_home",
"default": false,
"label": "Show on home page only"
}
]
}
{% endschema %}