Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Disable result link (click action) › Reply To: Disable result link (click action)
January 13, 2025 at 11:30 am
#52465
Keymaster
Oh, okay!
In that case it would the the best to simply unset the results links via a custom code:
add_filter( 'asp_results', 'asp_custom_link_results', 10, 1 );
function asp_custom_link_results( $results ) {
foreach ($results as $k=>&$r) {
$r->link = '';
}
return $results;
}
Try adding this code via the Code Snippets plugin or to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.