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

Reply To: Disable result link (click action)

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Disable result link (click action) Reply To: Disable result link (click action)

#52465
Ernest MarcinkoErnest Marcinko
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.