• Love the work!

    However, the price viewed by the customer, only changes the old price, and not the sales price.

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

Viewing 1 replies (of 1 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    Try to replace the line:

    
    this.priceDiv = $('#product-'+ this.productId +' .summary .woocommerce-Price-amount');
    

    with:

    
          this.priceDiv = $('#product-'+ this.productId +' .summary ins .woocommerce-Price-amount'); 
          if (this.priceDiv.length == 0){
            this.priceDiv = $('#product-'+ this.productId +' .summary .woocommerce-Price-amount');
          }
    

    in the file:

    
    wp-content/plugins/product-options-for-woocommerce/view/frontend/web/product/main.js
    

    Stanislav

Viewing 1 replies (of 1 total)
  • The topic ‘Updates wrong price’ is closed to new replies.