For the Product Listing, edit the file:
/includes/index_filters/default_filter.php
and where you find in each of the SELECT statements:
Code:
where p.products_status = 1
add to it:
Code:
where p.products_status = 1
and p.products_quantity > 0
For the Centerboxes, you would need to do the same thing, example for the Featured Products centerbox edit the file, using your templates and overrides:
/includes/modules/featured_products.php
copy to:
/includes/modules/your_templates_dir/featured_products.php
and add the same thing to each of the SELECT statements:
Code:
and p.products_status = 1 and f.status = 1
to read:
Code:
and p.products_status = 1 and f.status = 1
and p.products_quantity > 0
and that will prevent the display of Sold Out Products ...
Bookmarks