Quantcast
Channel: XTemos » All Posts
Viewing all articles
Browse latest Browse all 38982

Reply To: Hidden or Catalog products showing in Search results

$
0
0

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


Viewing all articles
Browse latest Browse all 38982

Trending Articles