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

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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #41112
    LimeSodaLimeSoda
    Participant

    i am trying to use this hook: https://knowledgebase.ajaxsearchpro.com/hooks/filters/search-results/asp_results
    …but as soon as i am adding the code (without any changes), there are no results in the search dropdown anymore. tested it even by directly returning the results without the loop. theme is woodmart. is this a known thing?

    #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;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.