subaru4wd Posted April 15, 2017 Share Posted April 15, 2017 I have been using the customer loyalty and rewards module from Prestashop and when my customers redeem their points for a voucher, the vouchers start date is a month or more in the future so they are not able to use the voucher right away. I do not see any settings that control this in the module configuration. Does anybody know of a way to make these vouchers available immediately? This is really upsetting a lot of my customers. Link to comment Share on other sites More sharing options...
razaro Posted April 15, 2017 Share Posted April 15, 2017 Check this https://github.com/PrestaShop/loyalty/blob/master/loyalty-program.php#L67 It says it is connected to max return date. I assume that is to prevent customers getting points and then returning product also. Link to comment Share on other sites More sharing options...
subaru4wd Posted April 15, 2017 Author Share Posted April 15, 2017 Okay. Thanks. Do you have any idea how I can change it so that the valid date is immediately? Link to comment Share on other sites More sharing options...
razaro Posted April 15, 2017 Share Posted April 15, 2017 Try this, not tested be warned, so make backups. Delete or comment out $dateFrom = Db::getInstance()->getValue(' SELECT UNIX_TIMESTAMP(date_add) n FROM '._DB_PREFIX_.'loyalty WHERE id_cart_rule = 0 AND id_customer = '.(int)$cookie->id_customer.' ORDER BY date_add DESC'); if (Configuration::get('PS_ORDER_RETURN')) $dateFrom += 60 * 60 * 24 * (int)Configuration::get('PS_ORDER_RETURN_NB_DAYS'); and add $dateFrom = date('Y-m-d H:i:s'); That should get current date. Link to comment Share on other sites More sharing options...
subaru4wd Posted April 15, 2017 Author Share Posted April 15, 2017 Okay I will give this a try and let you know how it works. Thanks for the help. 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