• Resolved marknopfler

    (@marknopfler)


    Hi!
    I have 1 grouped product with 15 products on it. When I enter the grouped product page they have 0 quantity by default in each product. Can you add “1” by defualt to all products? (just as normal product)
    Thanks you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author YITHEMES

    (@yithemes)

    Hi there,
    seems that this is the standard behaviour of Woocommrce plugin, the theme doesn’t handle this.

    Thread Starter marknopfler

    (@marknopfler)

    Ok fixed. Add this to functions.php:

    add_filter( ‘woocommerce_quantity_input_args’, ‘custom_quantity’, 10, 2 );
    function custom_quantity( $args, $product ) {
    $args[‘input_value’] = 1;
    return $args;
    }

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Grouped Porduct default quantity’ is closed to new replies.