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

Reply To: How to showWCFM vendor store in search ?

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 ?

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