• Resolved KS

    (@karl19)


    Hi there – I’m trying to move the Visual Form Builder menu from under Settings, to show it as a main menu instead. We’ll often be using the plugin for this project and it makes it easier to have it a main menu.

    I’ve managed to move it, change name, link to entries page – all works fine like this:

    add_action( 'admin_init', 'move_career_to_main' );
    function move_career_to_main() {
      remove_submenu_page( 'options-general.php', 'visual-form-builder' );
      add_menu_page('Career','Career','add_users','options-general.php?page=visual-form-builder&view=entries');
    }

    The issue I’m having, is that the system still thinks the menu is located under Settings, so when I click on my new Career menu item, the Settings panel still opens up.

    Does anyone have an idea how this could be changed, so that Settings doesn’t open up and the Visual Form Builder shows just like a main menu item?

    Any ideas welcome! I got some hints in a forum post, but couldn’t get it to work.

    http://wordpress.org/extend/plugins/visual-form-builder/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Visual Form Builder] Move VFB admin menu from Settings to main’ is closed to new replies.