Hello,
I am having troubles to display a full width dropdown menu on the storefront and I am trying to troubleshoot what is going on. Could you help me?
From what I can understand, this code checks the settings and it should apply a class to display the menu in full width in case the page is renderer in desktop
in nav-item.liquid file →
(…)
{%- liquid
assign fullwidthMenu = false
if link.levels > 1 and link.links.size > 4 or menuDropdown != ‘’
assign fullwidthMenu = true
elsif menuDropdown != ‘’
assign fullwidthMenu = true
endif
-%}
(…)
Now, it seems like fullwidthMenu variable is false, probably because link.levels < 1 or link.links.size < 4 or menuDropdown = ‘’ , I tried to capture this values to see where is the problem, but I don’t know how to look for them or where do they come from.
Do you know where can I see the settings from where this is information or these settings are taken?
Thank you!!!