I NEED THIS KIND OF SECONDARY MENU IN DOWN THEME HOW CAN I ADD IT?
THE ONE WHERE THERE IS THE MENU WITH NEW IN, HOODIE, T-SHIRT…
To add a secondary menu (like “New In”, “Hoodie”, “T-Shirt”, etc.) in the Down theme on Shopify, follow these steps:
-
Go to Online Store → Navigation in your Shopify admin.
-
Click Add Menu, create a new menu (for example, name it Secondary Menu), and add the items you want.
-
Save the menu and note the handle (example: secondary-menu).
-
Go to Online Store → Themes → Actions → Edit code.
-
Open the header.liquid file (or the appropriate file where you want the secondary menu to appear).
-
Add this code where you want the menu to display:
liquid
- You can also add custom CSS to style the menu according to your store’s design.
If you are not familiar with editing theme code, it is recommended to hire a Shopify expert to do this safely.
{% if linklists.secondary-menu.links.size > 0 %}
{% endif %}
in which line should I insert the code to make it appear under the main header?
will it be visible in mobile version too?
