Remove the quantity field for specific products in WooCommerce

Remove the quantity field for specific products in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_is_sold_individually', 'remove_all_qty_fields_on_specific_product', 10, 2 );
function remove_all_qty_fields_on_specific_product( $sold_individually, $product ) {
    // Here define the desired product Id(s)
    $targeted_product_ids = array( 90 );
    if ( count(array_intersect([$product->get_id(), $product->get_parent_id()], $targeted_product_ids) ) > 0 ) {
        return true;
    }
    return $sold_individually;
}

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