I would like to hide the email subscription bar on the home page only
Topic summary
A user wants to hide the email subscription bar specifically on the home page while keeping it visible on other pages of their Shopify store.
Initial Suggestion:
- Another user first recommended deleting the section entirely through the Shopify customizer, which would remove it from all pages.
Targeted Solution:
- After clarification that removal should only apply to the home page, a code-based solution was provided:
- Navigate to Customize > Edit Code > theme.liquid
- Insert conditional Liquid code that wraps the subscription bar section
- The code checks if the current page path is ‘/’ (home page) and hides the element accordingly
Status: The discussion appears resolved with a working code snippet, though implementation confirmation wasn’t provided.
Hi, Sir
please send page URl
I only want to delate it on home page, not in te entire website
Go customize > edited code >theme.liquid and past this code on bottom
{% if request.path == '/' %}
{% endif %}

