We want to sell at retail and wholesale prices on our website. How do you recommend we build the shopping cart so that wholesalers use one cart and retail shoppers use another one?
|
This will most definitely mean altering your code, but I would go for it.
I do think, that the cart should stay the same, only the product prices (and the minimum quantity) should change. In my opinion, there is no particular need to create a completely separate cart for this website. P.S. I would also follow the advice of Isaac, and do some manual approving. Most wholesalers I've worked with do not allow users to register themselves. |
|||
|
|
|
First, ask yourself whether your wholesale and retail customers need the same experience. If the answer is 'yes,' then one system, two customer types, with verification/approval for wholesale accounts is the way to go. Clearly the default is the retail experience and retail prices. There are lots of situations where the needs of the two groups are different. For instance,
In these cases, I'd always recommend a single product database feeding separate sites. Each needs a shopping cart that's built to work with a separate stock database, but then you have the flexibility to optimise in each domain. |
|||
|
|
|
|||
|
|
|
If you are willing to customize the code of the cart you can have users register for wholesale accounts. These accounts will be manually approved. Once someone has a wholesale account then you could code the system to recognize the user type and display price accordingly. On the backend you would need to setup multiple price points to work with the aforementioned functionality. |
|||
|
|
|
It's true that you may want to create separate sites entirely for your retail and wholesale clients. If you need to give them generally different shopping experiences, this is surely the way to go. However, if you do want it all in one site, you don't necessarily have to dive in to tons of custom code. Check out Drupal with Ubercart. A combination of supporting modules will allow you to do most/all of what you need without any/much custom code. For example, a while ago I built a site for a distributor that offered the same products to many clients, but different pricing for each. He could assign a role to each account, giving it access to products with the right prices for that account type. :) |
|||
|
|
|
You only need one cart. you need a database table for pricing levels. So you can have 2 levels, retail and wholesale. For each product you put in the retail and wholesale price in your db. When your user accesses the site they see retail prices. If they are logged in and have wholesale access then they get wholesale pricing. You want to code as little as possible, Having pricing levels give you access to do so. |
|||
|
|