• This is a utility for the Contact Forms 7 plugin, and as such should insert settings and other menus UNDERNEATH the Contact Forms menu for the CF7 plugin. Instead, it inserts a menu at the top-level, taking up space that degrades menu accessibility and increases cognitive load on users with no benefit at all.

    • This topic was modified 2 years, 3 months ago by wordcrunch. Reason: new review, new reasons to dislike
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi. @wordcrunch
    I agree with you.
    So I am using the following code.

    function change_menus() {
    		remove_menu_page( 'flamingo' );
    		add_submenu_page( 'wpcf7', 'Flamingo Address', 'Flamingo Address', 'administrator', 'admin.php?page=flamingo', '' );
    		add_submenu_page( 'wpcf7', 'Flamingo Message', 'Flamingo Message', 'administrator', 'admin.php?page=flamingo_inbound', '' );
    }
    add_action( 'admin_menu', 'change_menus', 999 );

    It would be nice if you could incorporate a plugin as well.

    Thread Starter wordcrunch

    (@wordcrunch)

    @cck23 Sweet! Thanks for sharing that ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Inconsiderate Menu Positioning’ is closed to new replies.