• Hello colleagues!
    I need to implement a rather unusual discount system. There is an online store selling bananas. We need to make sure that the manager can provide VIP users with a 30% discount on the purchase of bananas, but a maximum of 23 products. That is, so that a visitor who was provided with a discount could buy 23 bananas at a discount, and he will make subsequent purchases at the regular price.

    Do you have any options for how this can be implemented?

    Maybe php experts will recommend some code so that certain users receive such a discount. Or maybe there is a suitable plugin?

    I would be very grateful for your advice!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’ve always thought that quantity discounts are the best. As the seller, handling larger orders usually results in lower costs per each single item. The costs to handling many are cheaper per item.

    Most point of sale or eCommerce systems can easily handle that common discount system.

    Moderator bcworkz

    (@bcworkz)

    You’re basically describing a virtual coupon scheme. Select users are given a discount code they can use at checkout. When they use it once, it cannot be used again. Virtual coupon codes can often be tied to a specific user so no one else can use it. Similar to how a security nonce works. There are a number of coupon plugins.
    https://www.ads-software.com/plugins/search/coupon/

    Thread Starter netsergio

    (@netsergio)

    Thank you very much bcworkz!
    Yes, I took your advice and used the plugin Smart Coupons for WooCommerce.
    He helped me realize almost exactly what the client needs. I hope the client will agree to this implementation option.
    Anyway – thank you very much! You helped me a lot!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Discount system’ is closed to new replies.