Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
i noticed that my email banner at the bottom of my screen is on every page. how can i only have it showing on homepage?
website: thebrewerbuddy.com
Hi @BB100,
Please go to newsletter.liquid file and paste this at the bottom of the file:
{% unless request.page_type == 'index' %}
<style>
.newsletter {
display: none;
}
</style>
{% endunless %}
Hi @BB100,
If you have any questions, you can contact me directly.
Happy to help you 😊
Hi Namphan, i have the same issue. i am using the expanse them in shopify and want my newsletter page to be visible on the homepage only. the code you provided did not work for my theme
Hi @Naazare,
Please send the website link, I will check it for you
Hi @Naazare,
Please change code:
{% unless request.page_type == 'index' %}
<style>
.index-section.newsletter-container {
display: none;
}
</style>
{% endunless %}
Thank you it worked
Hi @Naazare,
You're welcome and happy to help