Limiting categories for wholesale customers?
Been searching the forums for a while now but cant find a similar question: I installed and am using dual pricing with success. All is fine but it would be nice if I could limit my wholesale customers to see only certain categories of products (we only wholesale the products that we manufacture, but have many other products in the online store. The problem is that the wholesale customers want to order these other products in large quantities - that we don't keep - and at reduced prices - which is not possible). I guess this is a tall order... might end up doing a seperate catalog just for wholesale.... Any ideas from the experts out there?
Re: Limiting categories for wholesale customers?
Quote:
Originally Posted by
Francois
Been searching the forums for a while now but cant find a similar question: I installed and am using dual pricing with success. All is fine but it would be nice if I could limit my wholesale customers to see only certain categories of products (we only wholesale the products that we manufacture, but have many other products in the online store. The problem is that the wholesale customers want to order these other products in large quantities - that we don't keep - and at reduced prices - which is not possible). I guess this is a tall order... might end up doing a seperate catalog just for wholesale.... Any ideas from the experts out there?
Oh, and if I can add to my wish list, it would be nice to offer wholesale customers completely different shipping method options.
Re: louis vuitton shoulder bag on www.louisvuittonsalesstoreus.com
Simple question does this work with V1.9.h?
AndyB
Re: DUAL Pricing version 2
How do you initiate the process of integrating zen-cart with the amazon webstore?
Re: DUAL Pricing version 2
@Francois,
You may want to try the Hidden Wholesale module. Essentially, any product with Retail price of $0 will be hidden from retail customers but will be shown to wholesalers. http://www.zen-cart.com/downloads.php?do=file&id=963
I haven't tested it, but I think you could hide shipping options with the following code (just paste inside the shipping module file):
Code:
if ($_SESSION['customer_whole'] && $_SESSION['customer_whole'] != '0') {
//wholesale customers will see this content
} else {
//retail customers will see this content
}