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

Reply To: Query regarding search results links to external sites and other issues

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Query regarding search results links to external sites and other issues Reply To: Query regarding search results links to external sites and other issues

#35073
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Sally,

That is perfect. Try adding this code 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.

add_filter('asp_results', 'asp_my_custom_link_url', 10, 1);
function asp_my_custom_link_url($results) {
	foreach ( $results as $k => &$r ) {
		if ( $r->content_type == 'attachment' ) {
			$r->link = get_post_meta( $r->id, '_gallery_link_url', true );
		}
	}
	return $results;
}