Hi carlosdel123,
I have updated the following JS in the /templates/gk_blank/html/mod_menu/default.php file to allow clicking on the icon to open the menu.
and still allow hover top open sub-menu items on the desktop.
<script>
$(document).ready(function() {
if (window.matchMedia("(max-width: 768px)").matches) {
$('.click-open').click(function() {
// Toggle the 'open-menu' class on the sibling .dropdown-menu
$(this).siblings('.dropdown-menu').toggleClass('open-menu');
// Close other dropdown menus
$('.click-open').not(this).siblings('.dropdown-menu').removeClass('open-menu');
});
}
});
</script>