Hi,
How do I hide footer on homepage only.. I want the footer displayed on product and other pages just not on the homepage..
store link: https://www.nutravalid.com/
Any help is greatly appreciated.
Hi,
How do I hide footer on homepage only.. I want the footer displayed on product and other pages just not on the homepage..
store link: https://www.nutravalid.com/
Any help is greatly appreciated.
Hi, @technase
Please open online store → theme → customize → edit code → footer.liquid.
{% style %}
.footer {
…
{% if template.name == ‘index’ %}
display: none;
{% endif %}
}
…
{%- endstyle -%}
Hi @technase
check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “theme. Liquid” file. Find the tag and paste the code below before the tag.
{% if template.name == 'index' %}
{% endif %}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you it worked