rimpa

vendor tab

Jul 11th, 2016
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_action('init', 'remove_vendor_write_panel_tabs');
  2.  
  3. function remove_vendor_write_panel_tabs() {
  4. global $WCMp;
  5. $user_id = get_current_user_id();
  6. if (is_user_wcmp_vendor($user_id)) {
  7. remove_action('woocommerce_product_write_panel_tabs', array($WCMp->product, 'add_vendor_tab'), 30);
  8. }
  9. }
Add Comment
Please, Sign In to add comment