I have installed http://wordpress.org/plugins/menu-items-visibility-control/ as suggested in your posts on this subject. The plugins “visability” toggle does not show up. I have even added “add_theme_support(‘avia_conditionals_for_mega_menu’);” that adds the enfold theme logic but I need more complex logic. I have checked the plugin site and it sends me to your support. Do you know why the plugin visibility toggle does not show up? Thanks!
Update to question… Is there a way to make the enfold theme compatible with Nav Menu Roles?
Hi!
You don’t need a plugin, maybe you are putting that line in the wrong place, it should be after this line:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
add_theme_support('avia_conditionals_for_mega_menu');
Best regards,
Josue
Yes, that activates a single condition menu system. I need to use ‘or’ statements by Role. Role A has access to pages 1, 2, and 3, Role B has access to pages 1, 2, 3, 4, 5, and 6, Role C has access to pages 1, 2, 3, 4, 5, 6, 7, 8, and 9. So the menu option needs to allow me to say ‘menu item displays for Role A or B or C’. Is that possible with the option you described? Thank you for your help! :)