You appear to be a bot. Output may be restricted
Description
Implement the "woocommerce_init" action for oik-weightcountry-shipping-proIf the WooCommerce Shipping Method class does not exist we don't do anything Load l10n versions and then initialise weight/country shipping
Usage
init_oik_shipping_pro();
Parameters
Returns
voidSource
File name: oik-weightcountry-shipping-pro/oik-weightcountry-shipping-pro.phpLines:
1 to 8 of 8
function init_oik_shipping_pro() { if ( !class_exists( 'WC_Shipping_Method' ) ) { return; } load_plugin_textdomain( "oik-weightcountry-shipping-pro", false, 'oik-weightcountry-shipping-pro/languages' ); require_once( dirname( __FILE__ ) . "/class-oik-shipping-pro.php" ); }View on GitHub