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

This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko Ernest Marcinko 1 year, 3 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #41112
    LimeSoda
    LimeSoda
    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 Marcinko
    Ernest 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;
    }
    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.