Title: Remove plugin link from admin menu
Last modified: June 16, 2020

---

# Remove plugin link from admin menu

 *  Resolved [Alexandre](https://wordpress.org/support/users/videorecover/)
 * (@videorecover)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/remove-plugin-link-from-admin-menu/)
 * 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](https://wordpress.org/support/users/videorecover/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [ThemeHigh](https://wordpress.org/support/users/themehigh/)
 * (@themehigh)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/remove-plugin-link-from-admin-menu/#post-13003636)
 * 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.

 * ![](https://ps.w.org/woo-checkout-field-editor-pro/assets/icon-256x256.gif?rev
   =3479964)
 * [Checkout Field Editor (Checkout Manager) for WooCommerce](https://wordpress.org/plugins/woo-checkout-field-editor-pro/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-checkout-field-editor-pro/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-checkout-field-editor-pro/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-checkout-field-editor-pro/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-checkout-field-editor-pro/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-checkout-field-editor-pro/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [ThemeHigh](https://wordpress.org/support/users/themehigh/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/remove-plugin-link-from-admin-menu/#post-13003636)
 * Status: resolved