Studio Theme: Allow Clickable Parent Menu Links

Studio Theme: Allow Clickable Parent Menu Links

RyanCheong995
New Member
6 0 0

Hi there! I am on the Studio theme, and wanted my Parent menu to be clickable on the header. Right now, when I add submenus, the parent menu link does not work, and only functions as a drop down when clicked on. How can I also enable parent menu to be clickable like seen in other themes?

Replies 8 (8)

StudioEnchant
Shopify Partner
249 40 41

Hey @RyanCheong995,

Try to add the following code to your header.liquid file.

<ul class="main-menu">
  {% for link in linklists.main-menu.links %}
    <li class="menu-item {% if link.active %}active{% endif %}">
      <a href="{{ link.url }}" class="menu-link">{{ link.title }}</a>
      {% if link.links %}
        <ul class="sub-menu">
          {% for child_link in link.links %}
            <li class="menu-item">
              <a href="{{ child_link.url }}" class="menu-link">{{ child_link.title }}</a>
            </li>
          {% endfor %}
        </ul>
      {% endif %}
    </li>
  {% endfor %}
</ul>

 

If we helped you please Like this reply and Mark it as Solution! ❤️

Chat with us on WhatsApp


Click here to enjoy 3 months of Shopify for $1/month on select plans.
RyanCheong995
New Member
6 0 0

Hey @StudioEnchant , thanks for that, I have tried it but did not seem to work.

 

Perhaps you'd like to take a look? My collab ID is 9814

StudioEnchant
Shopify Partner
249 40 41

Okay, but what's the store URL?

If we helped you please Like this reply and Mark it as Solution! ❤️

Chat with us on WhatsApp


Click here to enjoy 3 months of Shopify for $1/month on select plans.
RyanCheong995
New Member
6 0 0

Hi @StudioEnchant  it is https://7098a5.myshopify.com/admin

 

Let me know if you can access it.

 

StudioEnchant
Shopify Partner
249 40 41

Hey, please provide the collaborator request code

If we helped you please Like this reply and Mark it as Solution! ❤️

Chat with us on WhatsApp


Click here to enjoy 3 months of Shopify for $1/month on select plans.
RyanCheong995
New Member
6 0 0

Hi @StudioEnchant  it is 9814

StudioEnchant
Shopify Partner
249 40 41

Hello again @RyanCheong995,

we have sent the collaborator access request. Kindly accept it so we can make the changes to your store.

If we helped you please Like this reply and Mark it as Solution! ❤️

Chat with us on WhatsApp


Click here to enjoy 3 months of Shopify for $1/month on select plans.
RyanCheong995
New Member
6 0 0

hi @StudioEnchant , access granted , please proceed thanks!