This topic contains 2 replies, has 2 voices, and was last updated by Ernest Marcinko 8 years, 1 month ago.
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.
Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › URL Redirection
This topic contains 2 replies, has 2 voices, and was last updated by Ernest Marcinko 8 years, 1 month ago.
Hello,
I am trying to set up the redirect feature so that search results redirect as follows:
Standard result url:
http://fdf.crctesting.com/product/vortex-vx-3-fluid-assist-3/
Required result (but not working):
http://fdf.crctesting.com/product/vortex-vx-3-fluid-assist-3/?support
However I cannot get it to work. Please can you let me know what I am doing wrong.
PS – I love this plugin!
Thank you.
WEB URL I Entered is wrong!!!
Should be: fdf.crct….. not pdf.crct……
Hi!
Thank you for your kind words!
I’m assuming you want to change the URL of the results to include the “?support” query as well. There is no option for that unfortunately, but it’s possible to do it with a custom hook:
Put this code to the functions.php file in your active theme directory:
add_filter( 'asp_results', 'asp_add_support_query', 1, 1 );
function asp_add_support_query( $results ) {
foreach ($results as $k=>$v) {
// Modify the results URL
$results[$k]->link .= "?support";
}
return $results;
}
That should hopefully do the trick.
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. |