woocommerce_quantity_input_step_admin, $step, $product, edit

woocommerce_quantity_input_step_admin, $step, $product, edit

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

apply_filters('woocommerce_quantity_input_step_admin, $step, $product, edit') is found 1 times:

  • /includes/admin/meta-boxes/views/html-order-item.php line 113
    			* @param   string      $step    The current step amount to be used in the quantity editor.
    			* @param   WC_Product  $product The product that is being edited.
    			* @param   string      $context The context in which the quantity editor is shown, 'edit' or 'refund'.
    			*/
    			$step_edit   = apply_filters( 'woocommerce_quantity_input_step_admin', $step, $product, 'edit' );
    			$step_refund = apply_filters( 'woocommerce_quantity_input_step_admin', $step, $product, 'refund' );
    
    			/**
    			* Filter to change the product quantity minimum in the order editor of the admin area.
    			*
    			* @since   5.8.0