Advertisement
wclovers

Untitled

Nov 29th, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. add_filter( 'wcfm_product_simple_fields_tax', function( $fields, $product_id ) {
  2.     if( wcfm_is_vendor() && isset( $fields['tax_class'] ) && isset( $fields['tax_class']['options'] ) ) {
  3.         if( is_array( $fields['tax_class']['options'] ) && isset( $fields['tax_class']['options']['digital-goods'] ) ) {
  4.             unset( $fields['tax_class']['options']['digital-goods'] );
  5.         }
  6.     }
  7.     return $fields;
  8. }, 999, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement