Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • We are experiencing a very similar problem. The dragging is suddenly very slow to the point where it’s unusable. Initially the plugin worked fine. Seems like the problems might have started when the plugin was last updated.

    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.

Viewing 2 replies - 1 through 2 (of 2 total)