The SaleMaker contribution provides store-owners with the necessary tools for defining, managing and exploiting StoreSales.
Legend: 
Download

Report
If you have pages that are not displaying the sale price after installing the contribution, make sure the page contains a code similar to the following:
if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
$products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';
} else {
$products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
}
Updated to work with register_globals = off.
Salemaker.php needed the following changes around line 44:
// Create a string of all affected (sub-)categories
if (tep_not_null($categories)) {
Changed to:
// Create a string of all affected (sub-)categories
$categories = $_POST['categories'];
if (tep_not_null($categories)) {
The database structure was also updated to work with large stores.
Based on version 2.3. Full package.
Fixed problem when it wasn't showing selected categories on edit sale. Only admin /salemaker.php file changed. Full package.
If your catalog is too big the 255 Char are not enough to do a select entire catalog. This script changes the Table structure so it will work.
See http://www.nutricraze.com
Small update to make the script run faster.
Although this is a full package the only file changed was admin/salemaker.php.
This File contains ONLY the instructions needed to use salemaker With The Product Listing in Columns contributions.
International dates were not handled correctly. Fixed.
Update instructions are in the ReadMe.
SALEMAKER NEEDS AT LEAST OSC 2.2MS2 TO FUNCTION CORRECTLY!
Not an update, just a few screenshots of SaleMaker in action.
The SaleMaker contribution provides store-owners with the necessary tools for defining, managing and exploiting StoreSales.