Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › search results link like filters › Reply To: search results link like filters
February 23, 2020 at 9:10 am
#25937
Keymaster
Hi,
You can try thad via a custom hook filter. Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!
add_filter( 'asp_results', 'asp_change_result_uri', 10, 1 );
function asp_change_result_uri($results) {
foreach ( $results as $k => &$r ) {
$r->link = 'https://localhost/link/?s=' . $_GET['aspp'];
}
return $results;
}