• Resolved anjenehm

    (@anjenehm)


    Hey Guys,

    thank you at all for the nice plugin! Really a great expierience to create a shop so fast and with an individual look and feel.

    We just hat one last question for the pricing.

    We are using this plugin (extra product options) for embroidery.
    So far so good, everything works well.

    But how can we solve if the qty is set up 2 – and more, to add an extra price?

    QTY: 1, no extra price
    QTY: 2 and more, add extra price for example 2-3 €/$

    So if anyone orders 100 clothes or more we would make a minus business :S
    I know there are a lot of plugins for discounting but not to add extra money.

    Thank you very much for helping us!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @anjenehm

    We are using this plugin (extra product options) for embroidery

    If you need help with the Extra Product Options plugin then its dedicated forum is the best place to get help. You can post your topic here: https://wordpress.org/support/plugin/woo-extra-product-options/

    there are a lot of plugins for discounting but not to add extra money

    You can check the WooCommerce Dynamic Pricing plugin that offers 7 different modes for setting up pricing based on a variety of conditions.

    For any pre-sales questions, you may create a ticket here. You’d need to log into your WooCommerce account before you can access that page, or create an account if you do not have one.

    Thread Starter anjenehm

    (@anjenehm)

    Hi @margaretwporg

    thank you for your quick replay.

    We are using this plugin Extra Product Options
    Everything worked well…

    We just need a solution to add extra cost for chose more articles.

    QTY: 1, no extra price
    QTY: 2 and more, add extra price for example 2-3 €/$

    It seems that the dynamic pricing plugin dosent solve this. We have a plugin already for dynamic pricing and discount. It also haven’t this option. And i researched some other plugins, and its the same. Just discounts but not a chance to get additional pricing selected by qty.

    I thought i could play maybe with some actions, but i think it would not be the best solution. Somethink like:

    add_action( 'woocommerce_before_calculate_totals', 'add_custom_price', 1000, 1);
    function add_custom_price( $cart ) {
        if ( is_admin() && ! defined( 'DOING_AJAX' ) )
            return;
     
        if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
            return;
     
        foreach ( $cart->get_cart() as $cart_item ) {
            $cart_item['data']->set_price( 4 );
        }
    }

    Therefore i needed to check if the extra option is chosen. And so on and so on. I thought there will be maybe a easy solution.

    Anyway thank you!

    Hi @anjenehm

    Sorry for the delay here.

    Thanks for providing detailed info about the specific requirement, but I’m afraid we are unable to provide support for customizations per our Support Policy.

    I can recommend the following places where you can get help:

    You may also be able to find someone willing to volunteer their time and knowledge in the free PHP support forum at PHP Builder .

    Also, for assistance with customization or development with your site, we recommend reaching out to someone on our customizations page.

    This particular forum is for questions that are related to the WooCommerce core features.

    That said, I’m going to leave this thread open for a bit to see if a developer is able to chime in to help you out.

    Seems we’ve not had additional inputs on this thread. Thus, we encourage you to make use of the above resources.

    I’ll go ahead and mark the thread as resolved but please feel free to create a new thread if you have further questions.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Add extra price by Qty’ is closed to new replies.