diff --git a/packages/Webkul/Product/src/Repositories/ProductRepository.php b/packages/Webkul/Product/src/Repositories/ProductRepository.php index c53d47876..ebf571d5f 100755 --- a/packages/Webkul/Product/src/Repositories/ProductRepository.php +++ b/packages/Webkul/Product/src/Repositories/ProductRepository.php @@ -459,10 +459,10 @@ class ProductRepository extends Repository $queries = explode('_', $term); $results = app(ProductFlatRepository::class)->getModel()::search(implode(' OR ', $queries)) - ->where('status', 1) - ->where('visible_individually', 1) - ->where('channel', $channel) - ->where('locale', $locale) +// ->where('status', 1) +// ->where('visible_individually', 1) +// ->where('channel', $channel) +// ->where('locale', $locale) ->orderBy('product_id', 'desc') ->paginate(16); } else {