Magento: Custom page with configurable option and update price based on option and also update reward points

1.app/design/frontend/smartwave/porto/template/apparel/apparel.phtml 2. /var/www/html/vgod/app/design/frontend/smartwave/porto/template/catalog/product/view/type/configurable_category_apparel.phtml 3. vgod/js/configurable_list.js if(typeof Inchoo_Product ==’undefined’) { var Inchoo_Product = {}; } /**************************** CONFIGURABLE PRODUCT **************************/ Inchoo_Product.Config = Class.create(); Inchoo_Product.Config.prototype = { initialize: function(config){ this.config = config; this.taxConfig = this.config.taxConfig; var settingsClassToSelect = ‘.super-attribute-select_’+this.config.productId; this.settings = $$(settingsClassToSelect); this.state = new Hash(); this.priceTemplate = new Template(this.config.template); this.prices = config.prices; Read more…