Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Balakrishnan-flycart/92a1508bce0714dfb66d4303045588b9 to your computer and use it in GitHub Desktop.
Save Balakrishnan-flycart/92a1508bce0714dfb66d4303045588b9 to your computer and use it in GitHub Desktop.
Woo Discount Rules v2 -Increase search result limit
add_filter('advanced_woo_discount_rules_select_search_limit', function($search_result_limit){
if($search_result_limit <= 20){
return 500;
}
return $search_result_limit;
}, 10, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment