Skip to content

Instantly share code, notes, and snippets.

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