Hello
https://ashburtononline.co.nz/
It looks like if a Menu item has a sub category, the menu item does not work as a link?
example, Events ... it the main site menu, it opend the calendar and displays the sub menu of 'Add an Event'.
It the off canvas, clicking on events opens the sub menu but the calendar never opens.
The code for this function was given to me by Ofi Khan some weeks ago ....
jQuery(function($) {
$(document).on("click", ".menu-deeper", function(event) {
if (event.target.classList.contains('menu-toggler')) return;
if (event.target.children.length) {
event.preventDefault();
event.stopPropagation();
$(this)
.toggleClass("menu-parent-open")
.find(">.menu-child")
.slideToggle(400);
}
});
});
This really does not work very well .... always problem with Helix Ultimate.
Currently, my Website sucks on a Cellphone!