• Resolved beriiberii

    (@beriiberii)


    Hi, I’m using your plugin together with TM Extra Product Option.
    I have a problem with prices.
    The discounted prices in the table do not update on the product page but in the cart they do
    Is there some setting I need to change to get them to work together?
    How can I solve it?
    Many thanks in advance

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mykola Lukin

    (@bycrik)

    Hello,

    Unfortunately, there are a ton of different product addons plugin on the market and each of them requires a special integration to work properly with tiered pricing.

    Currently our plugin support the following product add-ons plugin:

    • Product add-ons by WooCommerce
    • WooCommerce Custom Product Addons (WCPA) by Acowebs
    • Product Fields (Product Addons) by StudioWombat

    You can find a list of compatible plugin under the WooCommerce -> Settings -> Tiered Pricing -> Integrations section.

    We will consider integrating it with the “TM Extra Product Option” in future updates.

    Thanks!

    Plugin Author Mykola Lukin

    (@bycrik)

    You can try to add the following JS to your product page:

    (function($){
    
    var currentPrice = false;
    
    $(document).on('tiered_price_update', function(event, data){
        currentPrice = data.price;            
    });
    
    jQuery.epoAPI.addFilter('tc_calculate_product_price',function(price){
    
        if(currentPrice){
            return currentPrice;
        }
    
        return price;
    })
    
    })(jQuery);

    I cannot guarantee it will work now, but it worked for older versions of the “TM Extra Product Option.” plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Price don’t change in product page’ is closed to new replies.