Points for comments are not correctly assigned in v.2,0d.
You must edit catalog/includes/functions redemptions.php file and modify function tep_add_pending_points($customer_id, $insert_id, $points_toadd, $points_comment, $points_type)
first line
$points_awarded = $points_toadd * POINTS_PER_AMOUNT_PURCHASE;
must be changed by
if ($points_type=="RV"){
$points_awarded = $points_toadd;
} else {
$points_awarded = $points_toadd * POINTS_PER_AMOUNT_PURCHASE;
}
More...




LinkBack URL
About LinkBacks









Bookmarks