This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Issue with Isotopic results and filtering of texonomy results

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Issue with Isotopic results and filtering of texonomy results Reply To: Issue with Isotopic results and filtering of texonomy results

#32324
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Joe,

1. There is an internal limit set to prevent over over 10 iterations. It can be bypassed however by using a small custom code snippet. Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!

add_filter( 'asp_query_args', 'asp_change_remaining_limit_mod', 10, 2 );
function asp_change_remaining_limit_mod( $args, $id ) { 
  $args['_remaining_limit_mod'] = 9999999;
  return $args;
}

2. If the persons are wordpress users in this case, then it is not possible. If these are custom post types, then it should be doable via taxonomy term filters.