Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author RazyRx

    (@razyrx)

    Hi,

    You need to set widgets on each site to see it, because different sites use own widgets and settings.

    Regards,
    Oleg

    Thread Starter NR Dev

    (@anown2)

    Hi,

    Thank you for your reply. The problem is I checked the Widget and there is no widget for your plugin.

    I also check the plugin page(of the second site) and there is no option to activate.

    Plugin Author RazyRx

    (@razyrx)

    Hi,

    I Checked plugin on network and all works fine.
    Please check that You activate plugin for network or for each site.
    If plugin is active please check widget “AJAX Product Filters”

    Regards,
    Oleg

    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 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Multi Site(Network) Support’ is closed to new replies.