I want my header to not show in product page

How to have header everywhere except product page?

Hey @zrokth ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.

{% if template.name == 'product' %}
  
{% endif %}

Screenshot is for reference only, the correct code to paste is the one shown above.