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

Reply To: show images on the multisite results page

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

#21174
Ernest MarcinkoErnest Marcinko
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;
}