Dan1 Posted October 27, 2012 Share Posted October 27, 2012 Is there a module that will automatically display the price impact next to each product option? Link to comment Share on other sites More sharing options...
Dan1 Posted October 28, 2012 Author Share Posted October 28, 2012 Bump ............................................. Link to comment Share on other sites More sharing options...
Dan1 Posted October 30, 2012 Author Share Posted October 30, 2012 Bump ............................................. Link to comment Share on other sites More sharing options...
slock7 Posted November 22, 2012 Share Posted November 22, 2012 I'm looking for the same feature. I thought I would resolve it with an easy equation in product.js but it's not that simple (for me). Any hints how to calculate (or show?) the price impact next to every attribute ? productPrice - [what?] = impact Link to comment Share on other sites More sharing options...
davinder Posted July 27, 2013 Share Posted July 27, 2013 find for this code var taxExclPrice = priceTaxExclWithoutGroupReduction + (selectedCombination['price'] * currencyRate); in product.js then copy below code and paste after it in product.js in theme/js directory if(selectedCombination['price']!=0){ var effectedprice = currencySign + selectedCombination['price']; $("#showImpactprice").text("The Effected price for this is "+effectedprice); } else { $("#showImpactprice").text(''); } and then add below line in product.tpl where you want to display price. <span id="showImpactprice"></span> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now