Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › How to showWCFM vendor store in search ? › Reply To: How to showWCFM vendor store in search ?
February 11, 2022 at 4:34 pm
#36692
Keymaster
Fantastic, I have found this from their support forums, which I think has a solution for us.
Try this:
add_filter( 'asp_results', 'asp_get_custom_wcfm_vendor_image', 10, 1 );
function asp_get_custom_wcfm_vendor_image( $results ) {
foreach ($results as $k=>&$r) {
if ( $r->content_type == 'user' ) {
$store = wcfmmp_get_store( $r->id);
$img = $store->get_avatar();
if ( !is_wp_error($img) && !empty($img) )
$r->image = $img;
}
}
return $results;
}