Hi,
So I disabled all plugins, changed over to default theme and I could see the menu.
I then activated NMR and it was still there but no roles showing.
So I activated NMR toggle and the menu disappeared again.
content of the toggle plugin is…
<?php
/*
Plugin Name: Nav Menu Roles Toggle
Plugin URI: https://gist.github.com/helgatheviking/d00f9c033a4b0aab0f69cf50d7dcd89c
Description: Give NMR priority over any competing Walkers
Version: 0.1.0
Author: helgatheviking
Author URI: https://kathyisawesome.com
*/
function kia_force_nmr_filter( $walker ){
if( function_exists( ‘Nav_Menu_Roles’ ) ){
$walker = ‘Walker_Nav_Menu_Edit_Roles’;
}
return $walker;
}
add_filter( ‘wp_edit_nav_menu_walker’, ‘kia_force_nmr_filter’, 999999 );
Any ideas?
Thanks again,
Antony