Hi,
I would like to remove the header, footer, Menu and announcement bar from this page only. https://kiki-health.com/pages/product-catalogue
Any help would be appreciated!
Thank you
Gina
Hi,
I would like to remove the header, footer, Menu and announcement bar from this page only. https://kiki-health.com/pages/product-catalogue
Any help would be appreciated!
Thank you
Gina
Hey @gina16
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
{% if page.handle == "product-catalogue" %}
{% endif %}
RESULT
If I managed to solve your problem then, donβt forget to Like it and Mark it as Solution!
Best Regards,
Moeed
@gina16 - add this code to the end of your theme.liquid file before and check,
{% if page.handle == "product-catalogue" %}
{% endif %}
Hi @gina16 ,
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hello @gina16
{% if page.handle == 'product-catalogue' %}
{% endif %}
Hi @gina16
Please put this code in theme.liquid before body closing tag
{%- if page.handle == 'product-catalogue' -%}
{%- endif -%}
Thanks!