How can I display the newsletter only on the home page?

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?

christcrewco.com

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

  1. Go to Online Store->Theme->Edit code
  2. Asset->theme.css-> paste bellow code in bottom of file
.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.