%s

', __('To use the Amazing Fullfilment Integration for WooCommerce plugin it is required that WooCommerce is active')); } /** * amzFulfillmentInit * * Initialize amzFulfillment plugin */ function amzFulfillmentInit() { if(!is_plugin_active('woocommerce/woocommerce.php') && !is_plugin_active_for_network('woocommerce/woocommerce.php')) { add_action('admin_notices', 'amzFulfillmentWooCommerceError'); } else { AmzFulfillment_Core::instance(); } }