Hi everyone,
I’ve seen many solutions for hiding the entire footer, but I can’t find any that explain how to hide just the Navigation Menu section in the footer on Dawn 2.0.
Any help would be greatly appreciated!
Thanks!
Hi everyone,
I’ve seen many solutions for hiding the entire footer, but I can’t find any that explain how to hide just the Navigation Menu section in the footer on Dawn 2.0.
Any help would be greatly appreciated!
Thanks!
Hey @randomstoreowne
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
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @randomstoreowne in custom-liquid sections use this logic and styles to hide all footer menu blocks
{% if request.page_type == "product" or request.page_type == "collection" %}
{% endif %}
You can do that by adding this code to theme.liquid file, after in Online Store > Themes > Edit code
{%- if template.name contains 'collection' or template.name == 'cart' }
{%- endif -%}