How to Hide Only the Navigation Menu of the Footer on all Product, Collection and Add-To-Cart Pages

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

Share your Store URL and Password if enabled.

Best Regards,

Moeed

Dental-armor.com

Hey @randomstoreowne

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. 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 %}

Hi @randomstoreowne

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 -%}