• Resolved Alexandre

    (@videorecover)


    I tried a solution from another post here, but is no longer working.

    I want to remove the plugin link from admin menu, under Woocommerce menu item.

    Anything like that does not works:

    remove_submenu_page( 'admin.php?page=wc-admin','checkout_form_designer' );

    How to hide it?

    • This topic was modified 5 years, 11 months ago by Alexandre.
Viewing 1 replies (of 1 total)
  • Plugin Author ThemeHigh

    (@themehigh)

    Please add the below code snippets in your theme’s functions.php file to remove the Checkout field editor menu from the admin panel.

    add_action( 'admin_menu', 'th_remove_submenu_page' );
    function th_remove_submenu_page() {
      remove_submenu_page('woocommerce', 'checkout_form_designer');
    }

    We hope this will help.

    Thank you!

Viewing 1 replies (of 1 total)

The topic ‘Remove plugin link from admin menu’ is closed to new replies.