Hi! It’s clickable for me (Chrome), but I see that it’s not pickup up all Mega Menu styles, the link needs a ‘mega-menu-link’ class added to it. The following filter does this.
add_filter( 'wpmenucart_submenu_item_li', 'wpmenucart_add_submenu_item_a_class', 10, 2 );
function wpmenucart_add_submenu_item_a_class ( $cart_submenu_item_li, $submenu_item_data ) {
$anchor = sprintf('<a href="%s" class="clearfix">', $submenu_item_data['item_permalink']);
$anchor_new = str_replace('clearfix', 'clearfix mega-menu-link', $anchor);
$cart_submenu_item_li = str_replace($anchor, $anchor_new, $cart_submenu_item_li);
return $cart_submenu_item_li;
}
Read this if you don’t know what to do with this code!
Ewout