Ok, guess I pm'd you too soon. I had reinstalled zc because of issues with the cherry_zen template. So I reinstalled Quantity Discount on a stock osc template. The discount itself works fine, but when I exclude categories my right column gets wiped out.
I dunno, maybe I did something wrong. I did refer to your website & here is the code I used (just the part I changed, it's too long to post):
Code:
<?php
/**
* Quantity Discounts in the order_total module
* Version 1.10
* By Scott Wilson (swguy)
* @copyright That Software Guy (www.thatsoftwareguy.com)
* @copyright Portions Copyright 2004-2006 Zen Cart Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
*/
class ot_quantity_discount {
var $title, $output;
var $explanation;
// Add categories you wish to exclude to this list.
// Go to Admin->Catalog->Categories/Products and look
// at the left hand side of the list to determine
// category id. Note that 99999 and 99998 are just given
// as examples.
function exclude_category($category) {
switch($category) {
case 14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
return true;
}
return false;
}
Now, I took out the exclusions & reuploaded and my right column came back.
Bookmarks