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

Reply To: search results link like filters

#25937
Ernest MarcinkoErnest Marcinko
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;
}