Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › usage of asp_results hook > no results anymore › Reply To: usage of asp_results hook > no results anymore
January 27, 2023 at 12:29 pm
#41113
Keymaster
Hi,
I just tested the same exact code, and it works without any issues on our ends on multiple test servers. You may have a missing piece of code or an accidental typo somewhere. Try without the comments:
add_filter( 'asp_results', 'asp_custom_link_results', 10, 1 );
function asp_custom_link_results( $results ) {
$link = 'https://www.google.com/';
foreach ($results as $k=>&$r) {
if ( !is_user_logged_in() )
$r->link = $link;
}
return $results;
}