Close

mega-menu-responsive not showing

ubiquitas
9 years ago
#6194 Quote
Avatar
  • 2
Hello

So just doing my first site with your plugins, I've played about with the location of the menu (a little) all working fine except for the mega-menu-responsive is not showing. I don't think any javascript event is binding to the menu-title

Any ideas, you can see my test site (work in progress) at http://phoenix.ubiquitas.eu

Thanks in advance for any help :)

Miles
Deni
9 years ago
#6211 Quote
Avatar
  • Moderator
  • 389
ubiquitas wrote:
Hello

So just doing my first site with your plugins, I've played about with the location of the menu (a little) all working fine except for the mega-menu-responsive is not showing. I don't think any javascript event is binding to the menu-title

Any ideas, you can see my test site (work in progress) at http://phoenix.ubiquitas.eu

Thanks in advance for any help :)

Miles


Hello,

The solution for your problem is :

1. Find this file: ~\Plugins\SevenSpikes.Nop.Plugins.MegaMenu\Views\MegaMenu\MegaMenu.cshtml

2. In the beginning of the file you will see these lines:

Html.AddScriptParts("~/Plugins/SevenSpikes.Nop.Plugins.MegaMenu/Scripts/jquery.lazyload.min.js");
    Html.AddScriptParts("~/Plugins/SevenSpikes.Core/Scripts/SevenSpikesExtensions.js");


3. Right after them you must add this line:

Html.AddScriptParts("~/Plugins/SevenSpikes.Nop.Plugins.MegaMenu/Scripts/MegaMenu.js");


That is all. Now you rebuild the plug-in and everything will work fine.

Best Regards !
Best Regards,
Mladen Staykov
Nop-Templates.com
ubiquitas
9 years ago
#6212 Quote
Avatar
  • 2
thanks, silly me !