This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko 2 months ago.
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.
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 2 months ago.
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?
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,You must be logged in to reply to this topic.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |