You appear to be a bot. Output may be restricted
Description
Implement 'woocommerce_shipping_methods' filter for oik-weightcountry-shipping-proNote: This filter is implemented with a higher priority value than oik-weightcountry-shipping so that it overrides the free version.
Usage
$array = add_oik_shipping_pro( $methods );
Parameters
- $methods
- ( array ) required – array of shipping method classes
Returns
array array with "OIK_shipping" includedSource
File name: oik-weightcountry-shipping-pro/oik-weightcountry-shipping-pro.phpLines:
1 to 5 of 5
function add_oik_shipping_pro( $methods ) { $methods[] = 'OIK_Shipping_Pro'; return $methods; }View on GitHub