woocommerce_quantity_input_classes

woocommerce_quantity_input_classes

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_quantity_input_classes') is found 1 times:

  • /includes/wc-template-functions.php line 1809
    		$defaults = array(
    			'input_id'     => uniqid( 'quantity_' ),
    			'input_name'   => 'quantity',
    			'input_value'  => '1',
    			'classes'      => apply_filters( 'woocommerce_quantity_input_classes', array( 'input-text', 'qty', 'text' ), $product ),
    			'max_value'    => apply_filters( 'woocommerce_quantity_input_max', -1, $product ),
    			'min_value'    => apply_filters( 'woocommerce_quantity_input_min', 0, $product ),
    			'step'         => apply_filters( 'woocommerce_quantity_input_step', 1, $product ),
    			'pattern'      => apply_filters( 'woocommerce_quantity_input_pattern', has_filter( 'woocommerce_stock_amount', 'intval' ) ? '[0-9]*' : '' ),
    			'inputmode'    => apply_filters( 'woocommerce_quantity_input_inputmode', has_filter( 'woocommerce_stock_amount', 'intval' ) ? 'numeric' : '' ),
    			'product_name' => $product ? $product->get_title() : '',