hiding custom code on all pages except home page- Crave theme

Hi I’m working on the crave theme and added some custom liquid onto the header section. However i want to hide this section on all pages except the home page. How, would i do this. it looks like i would need to edit the header-group.json but unsure of how to do this as normally i would hide something in the liquid.

Hi @alexa1960

Put your code between below conditional statement to show only on homepage.

{% if request.page_type == ‘index’ %}

// Homepage

{% else %}

// other pages

{% endif %}

Hope it helps…