Remove footer on HOME PAGE ONLY in Dawn theme

Hello,

I am trying to remove the footer on the HOME PAGE ONLY of the Dawn theme. There is no theme.css.liquid file under assets so i can’t use the the fix provided by other shopify experts. Please help.

Hi @jonmalonellc ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.liquid->Find the code {% section ‘footer’ %} and replace it with the code below:
{% unless template contains 'index' %}
{% section 'footer' %}
{% endunless %}

I hope it would help you.

2 Likes