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

Reply To: Displaying products with images first

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Displaying products with images first Reply To: Displaying products with images first

#25495
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

You can try this variation maybe, but I am not sure if it would work:

add_filter('asp_results', 'asp_image_results_first', 10, 1);
function asp_image_results_first( $results ) {
	$image_res = array();
	$non_image_res = array();
	foreach ( $results as $k => &$r ) {
		if ( !empty($r->image) ) {
			$image_res[] = $r;
		} else {
			$non_image_res[] = $r;
		}
	}           
	return array_merge($image_res, $non_image_res);
}