Quote Originally Posted by hem View Post
PTC- thanks to you and JC for covering while I was away. I'm back now.

I've attached an interim fix for the incorrect reward points problem. I'm currently coding the "Reward Point/Order State change" functionallity which will allow store admins to decide which of the Order Status's make reward points pending and which make reward points earned (and which to ignore- like "Update"). I've also coded in your "Remove Sidebox When Empty and/or Not Signed In"
Thanks for the fix! However, there is an error in the tpl_reward_points.php

Change this:
Code:
$reward_points+=getRewardPoints($product['id']))*$product['quantity'];
To this:
Code:
$reward_points+=getRewardPoints($product['id'])*$product['quantity'];
Looks like the one line had an extra ) in it.

Works fine now for me.

Thanks again andy.