Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #832218

    Hi Team,
    after updating on the new version of enfold, the new meta menu open no more the submenus of an meta menu:

    “Produkte” is an Metamenu and “Müller & Team” is an normal submenu.

    Hope you can help me, thank you!
    best Regards
    Mike

    #832718

    Hey Mike61,

    Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Best regards,
    John Torvik

    #832723
    This reply has been marked as private.
    #834429

    Hi,

    We have reported the issue to our devs.
    For a temporary workaround, you can choose not to display your menu item as mega menu or Alternatively, you can try creating a new menu for mobile version and add following code to Functions.php file in Appearance > Editor and display different menu on mobile

    function av_different_mobile_menu( $args = '' ) {
    	if($args['menu_id'] == 'avia-menu') {
    		if(wp_is_mobile()) {
    			$args['menu'] = 'main-menu-mobile';
    		} else {
    			$args['menu'] = 'main-menu';
    		}
    	}
    	return $args;
    }
    add_filter( 'wp_nav_menu_args', 'av_different_mobile_menu' );

    Please make sure to replace menu names (“main-menu” and “main-menu-mobile”) in the code to match the name of your menus

    Best regards,
    Yigit

    #834471

    Hi Yigit,

    thank you for answering!
    How long is “temporary”?

    Regards
    Mike

    #834474

    Hi Mike,

    Unfortunately we are not able to provide an ETA yet. Our devs are working on it though.

    Cheers!
    Yigit

    #834497

    Hi Yigit,
    this is bad ;)
    I find out that the sub menus will display after click when the parent menu item have an regular link (not # or colum title).
    Further all sub menus will display when I use the enfold setting “alway display submenu items” – this is my workaround
    for the time you need for an solution.
    Stay in touch please…

    Best regards
    Mike

    #836674

    Hi,

    We will
    Kriesi always announce the updates we do also.

    Thank you very much for your understanding

    Best regards,
    Basilis

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.