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

Reply To: I can't get images to show for buddypress search results page

Home Forums Product Support Forums Ajax Search Pro for WordPress Support I can't get images to show for buddypress search results page Reply To: I can't get images to show for buddypress search results page

#23197
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Thank you for all the details. Unfortunately the plugin cannot affect the results page layout, it is fully controlled by the theme you are using. Usually themes support only post types with images, so profile images may not show there. It might be possible to get the images via a modification though. There is a theme function api available, but you will have to ask the theme author as well on how exactly modify the images within the theme files via a child theme.

In your case, you are looking to implement something like this, to pass the search images to the results page:

<?php
$asp_img = get_asp_result_field('image');
if ( !empty($asp_img) ) {
  echo "<img src='$asp_img'>";
} ?>