Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Displaying products with images first › Reply To: Displaying products with images first
January 26, 2020 at 11:25 am
#25495
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);
}