Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter iak3

    (@iak3)

    Perfect, thank you.

    Yes, this is exactly what I want to do. But I need to do it for the cart too, so I’ll bother you again.

    Thank you 😀

    Thread Starter iak3

    (@iak3)

    First of all, thank you for your explanation and help.

    I am not a developer but i am familiar with coding, so i think i will try.

    Do you have any advices? 😀

    The code inside the Function.php file, right?

    /** * Adjust the quantity input values */ add_filter( 'woocommerce_quantity_input_args', 'jk_woocommerce_quantity_input_args', 10, 2 ); // Simple products function jk_woocommerce_quantity_input_args( $args, $product ) { if ( is_singular( 'product' ) ) { $args['input_value'] = 2; // Starting value (we only want to affect product pages, not cart) } $args['max_value'] = 80; // Maximum value $args['min_value'] = 2; // Minimum value $args['step'] = 2; // Quantity steps return $args; } add_filter( 'woocommerce_available_variation', 'jk_woocommerce_available_variation' ); // Variations function jk_woocommerce_available_variation( $args ) { $args['max_qty'] = 80; // Maximum value (variations) $args['min_qty'] = 2; // Minimum value (variations) return $args; }

    Right now, i am using Min/Max Quantities, but i have too many products to follow and the data i need is already imported through my management software.

    Thank you

    • This reply was modified 2 years, 6 months ago by iak3.
    Thread Starter iak3

    (@iak3)

    Hi man, it does not work. 🙁

Viewing 3 replies - 1 through 3 (of 3 total)