Currently working on implementing a 3 level dropdown feature. I have been using a third-party responsive menu in Opencart and it's been working well. You can see a demo of it here:
Unfortunately, Opencart does not natively support 3 level categories, so I am in need of an addon. Here is the link to the addon:
The 3rd level categories are being loaded but not displayed. I need help merging the two systems to display over 1000px with a + symbol for loading as well. Can anyone assist me with this?
You can view the dropdown menu in action at Plunkr here: https://plnkr.co/edit/hZG4pbVCXQupf2kgqoKF?p=preview
<div id="cssmenu"><div id="menu-button">Menu</div>
<ul>
<li class="has-sub"><span class="submenu-button"></span><a href="extractor-fans">Extractor Fans</a>
<ul style="">
<li><a class="arrow" href="/bathroom-extractor-fans">Bathroom Shower</a>
<div class="has-sub"><span class="submenu-button"></span>
<ul>
<li><a href="bathroom-vids">Designer Videos</a></li>
</ul>
</div>
</li>
<li><a href="ceiling-bathroom"> Bathroom Cabinets</a></li>
</ul>
</li>
</ul>
</div>