Title: Remove from sidebar
Last modified: July 17, 2024

---

# Remove from sidebar

 *  Resolved [user9876789](https://wordpress.org/support/users/user9876789/)
 * (@user9876789)
 * [2 years ago](https://wordpress.org/support/topic/remove-from-sidebar-3/)
 * Hello, we want to limit which roles can see Product Feed Pro in the sidebar. 
   There dont look to be any plugin specific capabilities so I’m trying to use this
   function to remove the page. It works for other WP pages but not Product Feed
   Pro. Please could you advise how we can remove this from the sidebar? (The user
   role needs manage_woocommerce for other purposes so I can’t take that off):
 *     ```wp-block-code
       add_action('admin_menu', 'remove_by_caps_admin_menu', 71);function remove_by_caps_admin_menu(){    if (is_admin()) {        if ( //theyre not an admin and they're not a shop manager and theyre not in sales            !current_user_can( 'administrator' ) &&             !current_user_can( 'shop_manager' )            ) {                            remove_menu_page( 'admin.php?page=woo-product-feed-pro' ); //remove pfp        }    }}
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [Jeff Alvarez](https://wordpress.org/support/users/superlemon1998/)
 * (@superlemon1998)
 * [2 years ago](https://wordpress.org/support/topic/remove-from-sidebar-3/#post-17899885)
 * Hi [@user9876789](https://wordpress.org/support/users/user9876789/) ,
 * You can call this action hook to remove the field menu field entirely. If you
   want to further fine tune, look into our bootstrap-old.php file on our plugin
 *     ```wp-block-code
       remove_action('admin_menu','woosea_menu_addition');
       ```
   
    -  This reply was modified 2 years ago by [Jeff Alvarez](https://wordpress.org/support/users/superlemon1998/).
 *  Thread Starter [user9876789](https://wordpress.org/support/users/user9876789/)
 * (@user9876789)
 * [2 years ago](https://wordpress.org/support/topic/remove-from-sidebar-3/#post-17900299)
 * Great thanks, that works!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove from sidebar’ is closed to new replies.

 * ![](https://ps.w.org/woo-product-feed-pro/assets/icon-256x256.png?rev=3601097)
 * [Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce](https://wordpress.org/plugins/woo-product-feed-pro/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-product-feed-pro/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-product-feed-pro/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-product-feed-pro/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-product-feed-pro/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-product-feed-pro/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [user9876789](https://wordpress.org/support/users/user9876789/)
 * Last activity: [2 years ago](https://wordpress.org/support/topic/remove-from-sidebar-3/#post-17900299)
 * Status: resolved