Show Drop Down item when click the drop down title

Hi i have the problem with drop down menus. When i clicked the drop down title it’s link to my collection (which now i change to #) and i would like to be able to show the drop down by clicking the title instead of + symbol. i’ve look for several solution but no way to fix this

My theme is Venture.

This is a solution i work out for!

This might be not as perfect but this will fixing the problem

Note: Can only toggle on the texts and symbols but not the blank spec if anyone have another idea please share it.

Only for Venture theme

Please back up your website template befor doing this

it’s have 2 parts

1 part

Goto Edit Code>Header.Liquid looking for"

    " ***please notice you have to past in the tag of<ul…> til

And replace with the following custome code:


{% for link in linklists[section.settings.main_linklist].links %}
{% assign child_list_handle = link.title | handleize %}

{% if link.links != blank %}
- {% include 'drawer-nav' %}

{% else %}
- {{ link.title }}

{% endif %}
{% endfor %}

{% if shop.customer_accounts_enabled %}
{% if customer %}
- {{ 'layout.customer.account' | t }}

- {{ 'layout.customer.log_out' | t }}

{% else %}
- {{ 'layout.customer.account' | t }}

{% endif %}
{% endif %}

2 Part

Goto drawer-nav.liquid

Replace all the code with this custome code:


{% for childlink in link.links %}
- {% if childlink.links != blank %}
  {% assign grandchild_list_handle = childlink.title | handleize %}

  {% for grandchildlink in childlink.links %}
  -      {{ grandchildlink.title | escape }}

  {% endfor %}

  {% else %}

         {{ childlink.title | escape }}

  {% endif %}

{% endfor %}

Hope all of this work for you!