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.