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’ %}
{% endif %}
{% endfor %}