• Great plugin, just having an issue with Elementor and price updates.

    When I disable Elementor, the pricing updates just like in the plugin demo. When it’s on, none of the options change the product price on the page or in the cart.

    Thanks in advance if you can help.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    Try to add this code:

    
           if (this.priceDiv.length == 0){
            this.priceDiv = $('.elementor-widget-woocommerce-product-price .woocommerce-Price-amount').eq(0);
          }
    

    before the line:

    
    if (this.currencyPosition == 'left' || this.currencyPosition == 'left_space'){
    

    in the file:
    wp-content/plugins/product-options-for-woocommerce/view/frontend/web/product/main.js

    Then refresh the updated file in your web browser.

    Stanislav

    When using this solution, the currency is missing. Check the link from @mrdelish, I have the same issue. Any tips?

    Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    Try to use this code:

    
           if (this.priceDiv.length == 0){
            this.priceDiv = $('.elementor-widget-woocommerce-product-price .woocommerce-Price-amount bdi').eq(0);
          }
    

    Stanislav

    Thanks @pektsekye, that’s working.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Elementor conflict with product price’ is closed to new replies.