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

#25938
dilsecreativodilsecreativo
Participant

I did this:

add_filter( 'asp_results', 'asp_change_result_uri', 10, 1 );
function asp_change_result_uri($results) {
	foreach ( $results as $k => &$r ) {
		$r->link = 'http://localhost/oviedoincluye/directorio/?specialisms=' . $_GET['aspp'];
	}

	return $results;
}

and now the url is http://localhost/oviedoincluye/directorio/?specialisms= but the $_GET[‘aspp’] does not work.

Should I replace the $_GET[‘aspp’] with something else? The short code of that search form is [wd_asp id=6].

thankyou

  • This reply was modified 6 years, 3 months ago by dilsecreativodilsecreativo.