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

Reply To: How to display terms image ? second

Home Forums Product Support Forums Ajax Search Pro for WordPress Support How to display terms image ? second Reply To: How to display terms image ? second

#3279
Ernest MarcinkoErnest Marcinko
Keymaster

Thanks, got them.

Just needed a minor modification, the final code is:
[php]
add_filter( "asp_results", "asp_pods_image_results", 1, 1 );

function asp_pods_image_results( $results ) {

foreach ($results as $k=>$v) {
// get the term images
if ($results[$k]->image != null && $results[$k]->image != "")
continue;
$pod = pods("stores");
$pod->fetch($results[$k]->id);
$icon = $pod->get_field("icon");
if ($icon != null && $icon != "")
$results[$k]->image = $icon;
}

return $results;
}
[/php]

It should work now.