How can I hide the footer and footer menu on Dawn 2.0 product pages?

Topic summary

A user needed to create completely unbranded product pages on Dawn 2.0 by hiding all navigation and branding elements. They had successfully hidden the header, announcement bar, and search functionality using custom CSS triggered by a ‘hide-bar’ product tag, but the footer and footer menu remained visible.

Solution provided:

  • GemPages support team supplied additional CSS code to hide the footer elements
  • The code uses the same tag-based conditional logic (checking for ‘hide-bar’ tag)
  • Targets the footer section with display: none

Outcome:

  • The solution successfully resolved the issue
  • User confirmed all unwanted elements are now hidden on tagged products
  • Pages are now fully unbranded with no access points to the rest of the website
Summarized with AI on November 24. AI used: claude-sonnet-4-5-20250929.

Hello!

I’m trying to remove the menu, logo, search bar, announcement bars footer and footer menu from some of my product pages. These pages need to be completely unbranded with no way to access the rest of my website. I had some help in a previous thread and was able to hide everything except the footer and footer menu. Can anyone help me update the code so that’s hidden as well?

Here’s what I’ve done so far. I added the following code and added “hide-bar” as a tag on the items where I want to hide the branding. It works great, I just need to hide the footer and footer menu, too. Thanks!

Here’s the code I used:

{% for tag in product.tags %}
{% if tag contains ‘hide-bar’ %}

div#shopify-section-announcement-bar { display: none; } div#shopify-section-header { display: none; } footer#shopify-footer { display: none; }

{% endif %}
{% endfor %}

Hello @RicquelS ,

It’s GemPages support team and glad to support you today.

Could you please try adding the code below

{% for tag in product.tags %}
{% if tag contains 'hide-bar' %}

{% endif %}
{% endfor %}

Best regards,
GemPages Support Team

This is wonderful, thank you so much!!!

1 Like

I am glad that my solution is helpful to you.

Best regards,
GemPages Support Team