• Resolved Ward

    (@yward)


    Activating the plugin renders this error in wordpress menu editor:

    Menu walker class is overriden by a theme/plugin. Current value = Theme_My_Login_Walker_Nav_Menu_Edit. Navigation menu permissions may still work. More information

    Any help will be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    If you would like to fix this, try this:

    
    function remove_tml_edit_nav_menu_walker() {
        remove_filter( 'wp_edit_nav_menu_walker', 'tml_admin_filter_edit_nav_menu_walker', 99 );
    }
    add_action( 'admin_init', 'remove_tml_edit_nav_menu_walker' );
    
    Thread Starter Ward

    (@yward)

    Appreciated, however I do not understand why you plugin needs that override to start with, it offers no functionality related to menus as far as I’m aware. Why was this code added?

    P.S.: Thank you, the code snippet works.

    • This reply was modified 5 years, 6 months ago by Ward.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Overrides Menu Class’ is closed to new replies.