mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
7 lines
174 B
Text
7 lines
174 B
Text
function woo_remove_all_quantity_fields( $return, $product ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
add_filter( 'woocommerce_is_sold_individually', 'woo_remove_all_quantity_fields', 10, 2 );
|