Viewing 10 replies - 1 through 10 (of 10 total)
  • gadwp_sites_limit filter will be available in the next version allowing you to adjust the default limit.

    HenkeWil

    (@henkewil)

    Very interested in this! When do you think the next version will be available for download?

    This feature is already available, since GADWP v4.4.3.

    HenkeWil

    (@henkewil)

    Ah – nice, thanks! Do I need to apply the filter somehow? Is 100 site still the default value?

    Default is 100, use the above filter to increase it at whatever value you need.

    HenkeWil

    (@henkewil)

    Ok so something like this:

    add_filter(‘gadwp_sites_limit’,200) ?

    HenkeWil

    (@henkewil)

    Already looked there – but I will check it again. Thanks for your help!

    In wp-content/mu-plugins add a file called custom-functions.php containing:

    <?php
    /**
     * Plugin Name: Custom Functions
     * Plugin URI: https://deconf.com
     * Description: Custom functions applied to all sites in the network.
     * Author: Alin Marcu
     * Author URI: https://deconf.com
     * Version: 1.0
     */
    add_filter('gadwp_sites_limit','gadwp_increase_sites_limit');
    function gadwp_increase_sites_limit(){
        return 200;
    }
    ?>

    The code wasn’t tested, so use it with caution.

    HenkeWil

    (@henkewil)

    Lovely ?? Thanks!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Please add support for more than 100 sites’ is closed to new replies.