woocommerce_before_get_rates_for_package

woocommerce_before_get_rates_for_package

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('woocommerce_before_get_rates_for_package') is found 1 times:

  • /includes/class-wc-shipping.php line 345
    					 * @since 4.3.0
    					 * @param array $package Package of cart items.
    					 * @param WC_Shipping_Method $shipping_method Shipping method instance.
    					 */
    					do_action( 'woocommerce_before_get_rates_for_package', $package, $shipping_method );
    
    					// Use + instead of array_merge to maintain numeric keys.
    					$package['rates'] = $package['rates'] + $shipping_method->get_rates_for_package( $package );
    
    					/**
    					 * Fires after getting shipping rates for a package.