mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/75363604/how-to-remove-quantity-from-cart-page-in-woocommerce-for-downloadable-items
7 lines
346 B
Text
7 lines
346 B
Text
function hide_downloadable_quantity_field_cart( $product_quantity, $cart_item_key, $cart_item ) {
|
|
if ( isset( $cart_item['data'] ) && $cart_item['data']->is_downloadable() ) {
|
|
$product_quantity = '';
|
|
}
|
|
return $product_quantity;
|
|
}
|
|
add_filter( 'woocommerce_cart_item_quantity', 'hide_downloadable_quantity_field_cart', 10, 3 );
|