Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #653553

    Hi,
    I just installed Zen MEnu logic becuase my client wants to have a separate navigationg bar on the woocommerce pages, but I can’t seem to get the menu to appear. I have created a separate menu, I have “registered” Zen menu to work with Avia, and at the bottom of the page I get to choose a custom zen logic menu, but it never appears on the page. Am I doing sometihng wrong, is the plugin not compatible with Enfold, or is there something wrong with the plugin?

    BR
    Thomas

    #653586

    Hi ThomasNorden!

    As that is a third party plugin, we do not offer support and the plugin authort should take a look basicly.
    But can you please share with us backend access, so we can give it a look and see if we can help and how?

    Thanks a lot

    Cheers!
    Basilis

    #653589

    I understand that you don’t support third party plugins so am really grateful if you take a look.

    #654819

    Hi,

    login does not work. Please check.

    Ask plugin’s author about this issue and let us know about his response, so we might be able to troubleshoot this.

    Best regards,
    Andy

    #654827

    Please try the login in the private message. I have hired a freelancer via codeable to help me make a custom solution, but if you can find a “standard solution”, please free to let me know.

    #654866

    Hi,

    still doesn’t work.

    However, if you hired a freelance developer for this job, then he will take care for it already. I don’t think we can do much, as it seems that the plugin you’ve mentioned is not compatible. You need to reach out plugin’s author about it.

    Best regards,
    Andy

    #763655

    Hi Thomas,

    I have the same problem… How did you fix it? In my case I have a business part and a consumer part of the website with their own menu. This works fine with Enfold and Zen Menu Logic. For the Woocommerce shop page I want to use the ‘consumer’ menu and I can select it at the bottom of the page, just like the other pages. But it doesn’t show the selected menu, it show’s a made up menu comprised of all the pages that exist…

    Best regards,

    Stefan

    #764378

    For others that have the same problem:

    Add the following to your functions.php (I use “My custom functions” plugin for this purpose) :

    // ability to use advanced layout editor for shop page so it doesn't break Zen Menu Logic on this page
    add_theme_support( 'avia_custom_shop_page' );
    
    // a filter to replace the primary menu on shop, product and product category pages
    add_filter( 'wp_nav_menu_args', 'custom_primary_menu' );
    
    function custom_primary_menu( $args ) {
      if ( (is_shop() || is_product() || is_product_category()) && ($args['theme_location'] == 'avia')) { 
        $args['menu'] = 'YOUR_MENU_NAME';
      }
      return $args;
    }

    Use avia for primary menu and avia2 for secondary

    • This reply was modified 7 years, 1 month ago by Skelt0r.
    #765953

    Hi,


    @Skelt0r
    : Thanks for the input. Appreciated! :)

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Second top nav with "Zen menu logic" not working?’ is closed to new replies.