Hello, I would like to click “shop” in my dropdown menu, and it expand into the nested categories without having to then click further categories to reach pages. is there a way to do this?
Hello,
Please share “Store URL”
Thanks!
URL is billerseal.com
Many thanks!
Hi @rsvpj ,
Please send me the code of header-drawer.liquid file, I will check it for you
Ive copy and pasted below, many thanks ![]()
{% comment %}
Renders a header drawer menu for mobile and desktop.
Usage:
{% render ‘header-drawer’ %}
{% endcomment %}
{{- 'icon-hamburger.svg' | inline_asset_content -}} {{- 'icon-close.svg' | inline_asset_content -}}
-
{%- for link in section.settings.menu.links -%}
-
{%- if link.links != blank -%}
{%- else -%} {{ link.title | escape }} {%- endif -%}
{{ link.title | escape }} {{- 'icon-arrow.svg' | inline_asset_content -}} {{- 'icon-caret.svg' | inline_asset_content -}}
{{- 'icon-arrow.svg' | inline_asset_content -}} {{ link.title | escape }}-
{%- for childlink in link.links -%}
-
{%- if childlink.links == blank -%}
{{ childlink.title | escape }}
{%- else -%}
{%- endif -%}
{{ childlink.title | escape }} {{- 'icon-arrow.svg' | inline_asset_content -}} {{- 'icon-caret.svg' | inline_asset_content -}}
{{- 'icon-arrow.svg' | inline_asset_content -}} {{ childlink.title | escape }}-
{%- for grandchildlink in childlink.links -%}
- {{ grandchildlink.title | escape }} {%- endfor -%}
{%- endfor -%}
{%- endfor -%}
-
{%- if childlink.links == blank -%}
{{ childlink.title | escape }}
{%- else -%}
{%- if shop.customer_accounts_enabled -%}
{%- if section.settings.enable_customer_avatar -%}
{%- if customer and customer.has_avatar? -%}
{{ customer | avatar }}
{%- else -%}
{{- 'icon-account.svg' | inline_asset_content -}}
{%- endif -%}
{%- else -%}
{{- 'icon-account.svg' | inline_asset_content -}}
{%- endif -%}
{%- liquid
if customer
echo 'customer.account_fallback' | t
else
echo 'customer.log_in' | t
endif
-%}
{%- endif -%}
{%- if localization.available_countries or localization.available_languages -%}
{%- if localization.available_countries and localization.available_countries.size > 1 -%}
{%- form 'localization', id: 'HeaderCountryMobileForm', class: 'localization-form' -%}
{%- endform -%}
{% endif %}
{%- endform -%}
{%- endif -%}
{%- endif -%}
{{ 'localization.country_label' | t }}
{%- render 'country-localization', localPosition: 'HeaderCountryMobile' -%}{%- if localization.available_languages and localization.available_languages.size > 1 -%}
{%- form ‘localization’, id: ‘HeaderLanguageMobileForm’, class: ‘localization-form’ -%}
{{ 'localization.language_label' | t }}
{%- render 'language-localization', localPosition: 'HeaderLanguageMobile' -%}-
{%- if settings.social_twitter_link != blank -%}
- {{- 'icon-twitter.svg' | inline_asset_content -}} {{ 'general.social.links.twitter' | t }} {%- endif -%} {%- if settings.social_facebook_link != blank -%}
- {{- 'icon-facebook.svg' | inline_asset_content -}} {{ 'general.social.links.facebook' | t }} {%- endif -%} {%- if settings.social_pinterest_link != blank -%}
- {{- 'icon-pinterest.svg' | inline_asset_content -}} {{ 'general.social.links.pinterest' | t }} {%- endif -%} {%- if settings.social_instagram_link != blank -%}
- {{- 'icon-instagram.svg' | inline_asset_content -}} {{ 'general.social.links.instagram' | t }} {%- endif -%} {%- if settings.social_tiktok_link != blank -%}
- {{- 'icon-tiktok.svg' | inline_asset_content -}} {{ 'general.social.links.tiktok' | t }} {%- endif -%} {%- if settings.social_tumblr_link != blank -%}
- {{- 'icon-tumblr.svg' | inline_asset_content -}} {{ 'general.social.links.tumblr' | t }} {%- endif -%} {%- if settings.social_snapchat_link != blank -%}
- {{- 'icon-snapchat.svg' | inline_asset_content -}} {{ 'general.social.links.snapchat' | t }} {%- endif -%} {%- if settings.social_youtube_link != blank -%}
- {{- 'icon-youtube.svg' | inline_asset_content -}} {{ 'general.social.links.youtube' | t }} {%- endif -%} {%- if settings.social_vimeo_link != blank -%}
- {{- 'icon-vimeo.svg' | inline_asset_content -}} {{ 'general.social.links.vimeo' | t }} {%- endif -%}
Hi @rsvpj ,
Please change all code:
{% comment %}
Renders a header drawer menu for mobile and desktop.
Usage:
{% render 'header-drawer' %}
{% endcomment %}
1 Like
amazing, thankyou so much! ![]()
1 Like
Hi @rsvpj ,
You’re welcome and happy to help ![]()

