How can I eliminate the footer on a single page?

Hey All,

How can I remove the footer with the newletter section just on this page for my site?

Email – Black Hound Sports

Any ideas let me know.

Thank you.

Hey @drewhound

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag

{% if page.handle == "email" %}

{% endif %}

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Ah apologies, footer meaning the whole section with the newletter?

HI @drewhound

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: paste bellow code in tag → save.

{% if page.handle == “email” %}

#shopify-section-footer { display: none !important; }

{% endif %

Hope that my solution works for you.

Best regards,

Henry | PageFly

Awesome got it thanks Henry, anyone else who needs the solution for this, Henry’s worked above, you just need to add } on the end of the end if statement at the end! To be this:

{% if page.handle == “email” %}

#shopify-section-footer { display: none !important; }

{% endif %}

and make sure it is before the tag