On the shopping cart I've built the default.php page has images showing up (they're supposedly "featured" products or something)
Is there a way to have none of the product images on the default.php page?
Thanks for your help!
Carrie![]()
This is a discussion on Removing Images from default.php within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; On the shopping cart I've built the default.php page has images showing up (they're supposedly "featured" products or something) Is ...
On the shopping cart I've built the default.php page has images showing up (they're supposedly "featured" products or something)
Is there a way to have none of the product images on the default.php page?
Thanks for your help!
Carrie![]()
Remove all specials or featured products from that section in the admin, and those boxes go away.
Michael Sasek
osCMax Developer
osCmax installation service - Have our professionals install osCmax on your server - same day service!
osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0
Stay Up To Date with everything osCMax:
Free osCMax Newsletters - Security notices, New Releases, osCMax News
osCMax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
find this line in the catalog/default.php file
YOu need to comment this out of the code and it will no longer show the new products for the current month. To comment out the code change it to thisCode:<?php $new_products_category_id = $current_category_id; include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?>
Code:<?php /* $new_products_category_id = $current_category_id; include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); */ ?>
Bookmarks