Hi,
Can anyone help me remove the entire footer from the homepage only (without affecting the other pages) on Brooklyn theme please? This is the site: www.ohvestirse.com
Thank you
Hi,
Can anyone help me remove the entire footer from the homepage only (without affecting the other pages) on Brooklyn theme please? This is the site: www.ohvestirse.com
Thank you
Hello,
Edit theme.liquid and search for this code
---
{% section 'footer' %}
Once you find it, replace it with this one
{% if template != "index" %}
---
{% section 'footer' %}
{% endif %}
Amazing, thank you ever so much! ![]()
Hi! Does anyone know if this will work with the Narrative theme? I would like to remove the footer entirely from the homepage. www.byisabellaivory.com
Thanks!
Hello @iivory ,
Yes same works for you.
In theme.liquid search for
and replace it with this code
{% if template != "index" %}
{% section 'footer' %}
{% endif %}
{% section 'footer' %}
Thanks