geekyLuce Posted May 14, 2014 Share Posted May 14, 2014 (edited) I created some products with combinations of attributes. For some reason, these products have a 0 euro price tag on the product page and the products without any attributes have the right price. I did set an impact on the original product price for every combination. However, the price is right in the backend and it is even right on the category page. It is wrong only on the product page. Why? Edited June 2, 2014 by geekyLuce (see edit history) Link to comment Share on other sites More sharing options...
El Patron Posted May 14, 2014 Share Posted May 14, 2014 I hope this post will help http://www.prestashop.com/forums/topic/320083-000-prices-problem-at-homepage-and-categories-page/?p=1645965 Link to comment Share on other sites More sharing options...
geekyLuce Posted June 2, 2014 Author Share Posted June 2, 2014 It really helped indeed, thank you! For those who are having the same issue, you just have to go to themes/yourtheme/js/product.js and everytime you see group_reduction, you replace it with 1. For example, line 299: priceTaxExclWithoutGroupReduction = ps_round(productPriceTaxExcluded, 6) * (1 / group_reduction); will be replaced with: priceTaxExclWithoutGroupReduction = ps_round(productPriceTaxExcluded, 6) * (1 / 1); And you do the same everytime it says group_reduction. 1 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