Hi
I use the free Shopify Studio Theme and want to create a landing page that doesn’t have the header and footer displayed. When I hide the header and footer on shopify customize theme they disappear from the whole website, but I just want them gone from this page:
https://www.wearestardust.uk/pages/free-audio-guide
How do I do this?
Thanks
Moeed
June 7, 2023, 3:57pm
2
Hey @AgnesB
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag.
{% if page.handle == 'free-audio-guide' %}
{% endif %}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @AgnesB
You need to edit your theme.liquid code. You can do the following.
From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
Go to Layout folder and open the theme.liquid file
Find the {% sections ‘header-group’ %} and {% sections ‘footer-group’ %}
You need to put them inside the unless statement. Refer to image below for placement
{% unless request.page_type == 'index' %}
Section header or footer here...
{% endunless %}
Hi @AgnesB
I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.
Please add this code before tag in your theme.liquid file:
{% if page.handle == ‘free-audio-guide’ %}
.header-wrapper.color-background-1.gradient, footer.footer.color-accent-1 {display: none;}
{% endif %}
Regards,
San
Perfect! It worked. Thanks so much.
This helped me! Thanks!
https://www.youtube.com/watch?v=mxUSrhnbehA
This was helpful context as well.
Latest solution for 2024
{% if page.handle == 'paid-partnership' %}
{% endif %}
Latest solution for 2024
{% if page.handle == 'free-audio-guide' %}
{% endif %}
Hey I tried this on my store, but not working.
See: https://webshopsuccesshub.com/pages/offer-landing-page
Theme is a Pro Theme: Be Yours
I indeed changed the code to say ‘offer-landing-page’ and put it in theme.liquid before /body tag.
Hey I tried this on my store, but not working.
See: https://webshopsuccesshub.com/pages/offer-landing-page
Theme is a Pro Theme: Be Yours
I indeed changed the code to say ‘offer-landing-page’ and put it in theme.liquid before /body tag.
I added this to my theme.liquid file, but I am still getting the ghost of an announcement bar and “Your Cart” text
https://brazeranch.com/pages/agritourism-insights