Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › show images on the multisite results page › Reply To: show images on the multisite results page
February 19, 2019 at 2:39 pm
#21174
Keymaster
Hi,
Thank you!
I have added the following code to the functions.php file in the theme directory, I think it’s working now:
add_filter('rh_no_thumb_url', 'asp_custom_def_image');
function asp_custom_def_image($imagee){
$imagee = get_asp_result_field($field = 'image');
return $imagee;
}