Hello,
This bug will be fixed in our next update. For now you can change the following code in basel/inc/classes/Search.php
file
$query_args = array(
'posts_per_page' => 3,
'post_status' => 'publish',
'post_type' => 'product',
'no_found_rows' => 1,
//'order' => $order,
'meta_query' => array()
);
with this one
$query_args = array(
'posts_per_page' => 3,
'post_status' => 'publish',
'post_type' => 'product',
'no_found_rows' => 1,
//'order' => $order,
'meta_query' => array(
array(
'key' => '_visibility',
'value' => array('visible', 'search'),
'compare' => 'IN'
)
)
);
It should fix your problem.
Kind Regards