Hi,
It’s not working on my fresh multisite. It just says “Activate WooCommerce plugin before”. It doesn’t detect that woocommerce is activated.
I changed the code for woocommerce detection, and got it to work.
Just had to add this to the top of the main plugin file:
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
And replace this line
if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) && br_get_woocommerce_version() >= 2.1 ) {
with:
if ( (is_plugin_active('woocommerce/woocommerce.php') || is_plugin_active_for_network('woocommerce/woocommerce.php')) && br_get_woocommerce_version() >= 2.1) {
That’s all I needed to fix this. EDIT: Also needed to change the check in widget.php.