ricky11 Posted March 12, 2014 Share Posted March 12, 2014 Hi, i am trying to edit product.tpl to edit the way product price is calculated. how does it apply the discounts to the customer groups? where the math is being done? I can't seem to find it product.tpl, would it be in a php file? Thanks. RICKY Link to comment Share on other sites More sharing options...
tuk66 Posted March 13, 2014 Share Posted March 13, 2014 In this function - /classes/Product::getPriceStatic() Link to comment Share on other sites More sharing options...
ricky11 Posted March 13, 2014 Author Share Posted March 13, 2014 Thanks i opened the product.php in teh classes/product folder and found the group_reduction <-- this is the discount for a customer group, is calcaulted as follows. What i need to do , is reverse it instead of discount by percentage, i want to increase by percentage. any idea? // Group reduction if ($use_group_reduction) { $reduction_from_category = GroupReduction::getValueForProduct($id_product, $id_group); if ($reduction_from_category !== false) $price -= $price * (float)$reduction_from_category; else // apply group reduction if there is no group reduction for this category $price *= ((100 - Group::getReductionByIdGroup($id_group)) / 100); } Link to comment Share on other sites More sharing options...
tuk66 Posted March 13, 2014 Share Posted March 13, 2014 M4 Category discount module. It allows to set discount as well as surcharge. Link to comment Share on other sites More sharing options...
ricky11 Posted March 13, 2014 Author Share Posted March 13, 2014 Thanks, but i dont want a discount or a surcharge, i want to increase the price by % for each customer group i want to do it within prestashop interface not a module interface. thanks. where can i see your homepage? Link to comment Share on other sites More sharing options...
tuk66 Posted March 13, 2014 Share Posted March 13, 2014 www.presta-addons.com Link to comment Share on other sites More sharing options...
ricky11 Posted March 13, 2014 Author Share Posted March 13, 2014 Thanks, but i dont want a discount or a surcharge, i want to increase the price by % for each customer group i want to do it within prestashop interface not a module interface. thanks. where can i see your homepage? Link to comment Share on other sites More sharing options...
ricky11 Posted March 13, 2014 Author Share Posted March 13, 2014 site is down. Link to comment Share on other sites More sharing options...
tuk66 Posted March 13, 2014 Share Posted March 13, 2014 It is working - http://www.presta-addons.com/16-m4-category-discount.html Link to comment Share on other sites More sharing options...
ricky11 Posted March 13, 2014 Author Share Posted March 13, 2014 (edited) not working on my side. Oops! Google Chrome could not connect to www.presta-addons.com From hong kong Edited March 13, 2014 by ricky11 (see edit history) Link to comment Share on other sites More sharing options...
tuk66 Posted March 13, 2014 Share Posted March 13, 2014 Strange. Where are you from? Link to comment Share on other sites More sharing options...
ricky11 Posted March 13, 2014 Author Share Posted March 13, 2014 still down from hong kong. Link to comment Share on other sites More sharing options...
tuk66 Posted March 13, 2014 Share Posted March 13, 2014 It is in your browser only. I checked it by https://www.websitepulse.com/help/testtools.china-test.html service from "Hong Kong". Anyway, try http://addons.prestashop.com/en/pricing-promotion-prestashop-modules/2125-m4-category-discount.html Link to comment Share on other sites More sharing options...
ricky11 Posted March 13, 2014 Author Share Posted March 13, 2014 Both now work.. Thanks. Link to comment Share on other sites More sharing options...
Recommended Posts