In Oscommerce, generally the latest products (which may be added/edited) are shown at the bottom of the categories page, below the sub categories.
To avoid this, simply comment the code in the while loop of the file:
includes/modules/new_products.php
The code will be something like:
while ($new_products = tep_db_fetch_array($new_products_query)) {
.....
Now you dont find any single products when you open a category.
To avoid this, simply comment the code in the while loop of the file:
includes/modules/new_products.php
The code will be something like:
while ($new_products = tep_db_fetch_array($new_products_query)) {
.....
Now you dont find any single products when you open a category.
Comments
Post a Comment