rimpa

Remove vendor category

Jun 23rd, 2016
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function remove_product_cat_metaboxes() {
  2. $user_id = get_current_user_id();
  3. if(is_user_wcmp_vendor($user_id)){
  4. remove_meta_box( 'product_catdiv','product','normal' ); // Categories Metabox
  5. }
  6. }
  7. add_action('admin_menu','remove_product_cat_metaboxes');
Add Comment
Please, Sign In to add comment