Hello,
I am trying to hide a header/menu section that is showing on this page. I want the menu to show on other pages so I don’t want to hide it anywhere else. Can someone help? The menu to hide is the first one under the announcement bar.
Site URL is thedenimlab.com
Thank you!
@korrynf
If you have custom coding idea then you can find the navigation code snipped in the header.liquid file in the theme files and create a condition as below
{% if page.handle == “youpage-ulr” %}
//let it empty
{% else %}
//add your navigation code
{% endif %}
If you dont have idea do let me know i will help you in this.
thanks