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

Reply To: usage of asp_results hook > no results anymore

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

#41113
Ernest MarcinkoErnest Marcinko
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;
}