We want customers to be able to view their current rewards credits and pending credits by checking their own account. I followed the following and added the code to the end of includes/templates/YOUR_TEMPLATE/templates/ tpl_account_history_info_default.php

But it showed nothing about credits. I guess I need more codes. I am willing to pay for it. Please contact me dancingever###################### thanks.

++++++++++++++++++++++++++++++++
• Display a customer's current store credits/rewards
In includes/templates/YOUR_TEMPLATE/templates/[select_a_template_file_of_your_choice].php, add the following to an appropriate location in your template file:
<!-- bof Store Credit Display -->

<?php

if (MODULE_ORDER_TOTAL_SC_ORDER_PRODUCT_POINTS == 'true') {

require_once(DIR_WS_CLASSES . 'store_credit.php');

$store_credit = new storeCredit();

echo $store_credit->retrieve_customer_credit($_SESSION['customer_id']);

}

?>

<!-- eof Store Credit Display -->