I would like to remove this announcement bar from the home page but keep it on all of the other pages.
Any help is greatly appreciated!
A user seeks to hide the announcement bar exclusively on the homepage while keeping it visible on all other pages of their Shopify store.
Solution Provided:
</head> tagdisplay: none when the page type is ‘index’ (homepage){%- if request.page_type == 'index' -%} to conditionally apply the stylingOutcome:
The solution successfully resolved the issue. The user confirmed the code worked as intended, allowing the announcement bar to remain visible on all pages except the homepage.
I would like to remove this announcement bar from the home page but keep it on all of the other pages.
Any help is greatly appreciated!
Hi @gavboy555 ,
Please go to Actions > Edit code > layout > theme.liquid file, find ‘’ tag and add code here:
Code:
{%- if request.page_type == 'index' -%}
{%- endif -%}
It worked thanks so much!
Hi @gavboy555 ,
You’re welcome and happy to help ![]()