This just one example but the Newsletter shows at the bottom of all of our pages. How do we make it so it only shows at the bottom of the Home page?
Tiger100k
PLEASE HELP ASAP!
This just one example but the Newsletter shows at the bottom of all of our pages. How do we make it so it only shows at the bottom of the Home page?
Tiger100k
PLEASE HELP ASAP!
Hello @CarsonTowt ,
Wrap newsletter code in this condition
{% if template == 'index' %}
Your-Newsletter-code-will-go-here
{% endif %}
Alternatively follow this
.newsletter_section {
display: none;
}
.index .newsletter_section {
display: block;
}
Thanks
Thanks
Hello @CarsonTowt
Check if the theme settings have an option to enable it only for the homepage.
Otherwise, follow @Guleria 's comment.
If helpful then please Like and Accept as a Solution.