Hi Najeeb,
Using version 11.7 of woocommerce-product-addon, (variation) products all show price as ‘NaN’ on the product page.
It would seem that the failure is in file ppom-price.js on line 7:
var wc_product_qty = jQuery(‘form.cart’).find(‘input[name=”quantity”]’);
This is looking for form.cart which does not exist.
Changing this to the below fixes it, but surely other users must have seen this too?
var wc_product_qty = jQuery(‘form’).find(‘input[name=”quantity”]’);