Advertisement
fahimmurshed

Using a Hook or Filter to Remove the Quantity Field

Jan 31st, 2022
1,078
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. function custom_remove_all_quantity_fields( $return, $product ) {return true;}
  2. add_filter( 'woocommerce_is_sold_individually','custom_remove_all_quantity_fields', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement