Remove the quantity field for downloadable items in the cart in WooCommerce

Remove the quantity field for downloadable items in the cart in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

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 );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.