I have upgrade magento 1.9.2.4 to 1.9.3.
I am facing the following error in the console in product page.
TypeError: Product.OptionsPrice is not a constructor
var optionsPrice = new Product.OptionsPrice([]);
I have upgrade magento 1.9.2.4 to 1.9.3.
I am facing the following error in the console in product page.
TypeError: Product.OptionsPrice is not a constructor
var optionsPrice = new Product.OptionsPrice([]);
It's caused by your custom theme not adding the new product_options.js file.
Edit your theme layout file (either local.xml or catalog.xml) and add the following under the <catalog_product_view> handle (or whatever page handle you're having the problem on):
<action method="addJs"><script>varien/product_options.js</script></action>
catalog_category_defaulthandle – Tahir Yasin Oct 18 '16 at 22:27<reference name="head">? – LucScu Mar 08 '18 at 15:58