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

Reply To: URL Redirection

#9617
Ernest MarcinkoErnest Marcinko
Keymaster

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:

[php]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;
}[/php]

That should hopefully do the trick.