woocommerce_quantity_input_step_admin

woocommerce_quantity_input_step_admin

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_quantity_input_step_admin') is found 2 times:

  • /includes/admin/meta-boxes/views/html-order-item.php line 80
    			* @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
    
  • /includes/admin/meta-boxes/views/html-order-item.php line 81
    			* @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
    			* @param   string      $step    The current minimum amount to be used in the quantity editor.