Quote Originally Posted by pinetreecandles View Post
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.
Dammit- score -1 for seat-of-the-pants coding.