• I’ve build a webshop based on WordPress and Woocommerce. Everything went perfect until I wanted to enter the prices.

    Our pricing system is supposed to be like this:

    Product (base price)
    Quantity discount (the more you buy, the more discount you get)

    Based on the quantity selected a client can choose (OPTIONAL) to print his logo on the product. The printing price is based on the quantity plus there is a one time fee (also depending on the quantity of the product).

    So let’s say a customer chooses 38 x product y and want his logo printed. The price should be calculated the following way:

    38 x product y (price based on quantity discount) (crucial)
    38 x Printing cost (based on quantity of product y) (crucial)
    1 x printing fee based on quantity of printed items (not very crucial, I could work around this one)

    Plus to make thing more complicated, order should go per 30 of a multitude of 30.

    I’ve bought and tried so many plugins but no one seems able. Should I give up on woocommerce ? Or does somebody have solution.

    https://www.ads-software.com/plugins/woocommerce/

Viewing 1 replies (of 1 total)
  • Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Plus to make thing more complicated

    If you have a unique, complex set of pricing rules I doubt you’ll find a generic plugin which works well here. The closest matches would be dynamic pricing or gravity form addons.

    It’s possible to do your own pricing logic via code – yes this needs a dev, but its doable.

    38 x product y (price based on quantity discount) (crucial)
    38 x Printing cost (based on quantity of product y) (crucial)

    Merge these rules. You can use 1 price which is for print cost and product cost.

    (price based on quantity discount)

    Use a custom plugin to implement discount logic on top.

    1 x printing fee based on quantity of printed items (not very crucial, I could work around this one)

    Does this span across products? If so, use the fees API in WooCommerce and add it later during cart/checkout.

Viewing 1 replies (of 1 total)
  • The topic ‘Pricing options’ is closed to new replies.