Tagged: Zen menu logic
-
AuthorPosts
-
June 26, 2016 at 2:10 pm #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
ThomasJune 26, 2016 at 5:45 pm #653586Hi 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!
BasilisJune 26, 2016 at 6:00 pm #653589I understand that you don’t support third party plugins so am really grateful if you take a look.
June 29, 2016 at 1:54 pm #654819Hi,
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,
AndyJune 29, 2016 at 2:04 pm #654827Please 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.
June 29, 2016 at 3:08 pm #654866Hi,
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,
AndyMarch 20, 2017 at 2:41 pm #763655Hi 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
March 21, 2017 at 9:39 pm #764378For 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, 7 months ago by Skelt0r.
March 24, 2017 at 7:09 am #765953 -
AuthorPosts
- The topic ‘Second top nav with "Zen menu logic" not working?’ is closed to new replies.