Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Never Settle

    (@neversettle)

    Hi Sa,

    Good question – by default that dropdown is limited to 1000 sites to avoid making an eternal list for folks who have a really large number of sites. We’re working on an update with a search-based input that will auto-suggest when you start typing so that all options can be shown without needing to scroll through such a big list.

    In the interim, you can add this snippet to your functions.php file to raise the limit to 10,000 sites in that dropdwon so that all 1800 of yours will be shown:

    add_filter( 'ns_cloner_wp_get_sites_args', 'liusashmily_cloner_show_all_sites' );
    function liusashmily_cloner_show_all_sites( $args ){
    	return array('limit'=>10000);
    }
    Thread Starter liusashmily

    (@liusashmily)

    WOW, it works like a charm~~!
    Thank you so much!

    Just for whoever wants to find where is the functions.php. It is located in your server wp-content/themes/THE-MAIN-SITE-THEME-FOLDER/functions.php

    Plugin Author Never Settle

    (@neversettle)

    Sweet, you’re welcome and glad we could help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How many sites can show up at the Source dropdown menu?’ is closed to new replies.