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 2:28 pm
#25938
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
dilsecreativo.