Hello everyone,
The VM Search plugin had a bug, i.e. it also displayed the unpublished products.
The bug was in the query; simply put a pair of parentheses on lines 192 and respectively 194:
before:
" WHERE {$where} " .
" {$shopper_group_condition} " .
" {$uncategorized_products_condition} " .
" AND p.published = 1" .
after:
" WHERE ({$where} " .
" {$shopper_group_condition} " .
" {$uncategorized_products_condition}) " .
" AND p.published = 1" .
Regards,
George
www.proxima-mundi.ro
https://forum.virtuemart.net/index.php?topic=141807.0