
Originally Posted by
rleepac
How do I dis-allow my wholesale customers from receiving quantity discounts? I only want those to apply to the retail customers.
Thanks!
Rleepac, you need to find the part of ZC's code that controls the quantity discount and wrap an if statement around it that excludes WS customers. This can be complicated and as I've never dealt with it I can't tell you exactly where to begin.
The if statement you will be using will be something like this.
PHP Code:
if (!$_SESSION['customer_whole'] || $_SESSION['customer_whole'] == '0' ) {
//Quantity Discount code here
}
Hope that gets you off to a good start. Cheers,
Bookmarks