Re: Store credit and reward point module
does this module work with Paypal IPN? please note that the old mode” Reward Point Full Sui” don’t work with it. I attached what the author said here:
##############################_
The official status of this issue is: The mod works with PayPal- just not with PayPal IPN. Hopefully this will change when ZenCart 2.0 is released.
but the PayPal IPN mod does this without calling any of the ZenCart notifiers. And as the RP award mod is attached to one of these notifiers, PayPal IPN does not let the RP mod know that there are points which need to be stored. Hence the problem. Contrast to this Google Checkout which runs the same way as PayPal IPN under ZenCart- It makes the correct calls and points are stored.
.
Re: Store credit and reward point module
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 -->
Re: Store credit and reward point module
I think I am also needing someone to install this for me. I am willing to pay. Can someone please contact me at lauriesscraps(at)live(dot)com? Thank you!
Re: Store credit and reward point module
I think I got it all installed with just a few things that I think I can fix with help..... so I won't need someone to install.
Quote:
Originally Posted by
numinix
Apologies, the documentation has been corrected.
I am having the same problems. All the documentation says is this:
Quote:
Find (around line 70)
if ($credit_covers) {
Quote:
Replace With
// BEGIN REWARDS POINTS
// if credit does not cover order total or isn't selected
if ($_SESSION['credit_covers'] != true) {
// check that a gift voucher isn't being used that is larger than the order
if ($_SESSION['cot_gv'] < $order->info['total']) {
$credit_covers = false;
}
}
// END REWARDS POINTS
if ($credit_covers) {
So does this mean that I add all this right above if ($credit_covers)? If I do that my check out page does not show up. Please advise. Thank you.
Re: Store credit and reward point module
Hi, yellow1912
Thank you for the mod, I tested and running well.
Only one Bug I found is:
I set a 5% discount group in the admin.
Add a member to this group.
Issue $500 store credit to this member.
This member place $200 order and check out.
Here is a mistake:
Sub-Total: $200
Group Discount: -$10
Store Credit: -$200
Total : $-10
The store credit doesn't subtract the Group Discount before apply. Store credit direct apply the Sub-Total, omit the Group Discount.
If finish checkout, there is only $300 store credit in member's account.
The correct store credit should be $310, I owe this member $10.
and the invoice displays Total : $-10.
This mistake only happen if the group member has enough store credit.
and only happen on the group member.
Maybe the mod omit the group pricing.
Would you please have a look?
Thank you.
Re: Store credit and reward point module
2. I found another bug:
sometimes, after member applied the store credit to check out, I found in the admin-store credit, Credit Balance-display 0, but when click the member's name - edit, it displays " 7.62939e-07 ", it's strange number.
Do you know why?
thanks
Re: Store credit and reward point module
I have a question. Under admin/customers/store_credit when I click on a customer to give them a store credit it want let me. It shows this kind of stuff. Can anybody help me. Thank You
Customers Balance
customers_firstname); ?> customers_lastname); ?>
Store Credit Balance amount==null || is_nan($cInfo->amount)) $cInfo->amount = 0; $amount = number_format($cInfo->amount, 2); $str_balance = "".($amount); echo zen_draw_input_field('customers_balance', $str_balance); ?>
Re: Store credit and reward point module
Hi,
Installed the latest version but when I go to Customers > Store Credit, I am getting the following error. Please help.
1054 Unknown column 'pending' in 'field list'
in:
[SELECT customers_id, pending FROM zen_sc_customers WHERE customers_id = 3 LIMIT 1]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Re: Store credit and reward point module
when a customer check out with paypal IPN (not paypal express checkout), will he get store credit automatically? Does anyone has ever make this module work with paypal IPN before?
Re: Store credit and reward point module
Quote:
Originally Posted by
silkhouse
when a customer check out with paypal IPN (not paypal express checkout), will he get store credit automatically? Does anyone has ever make this module work with paypal IPN before?
I use it with PayPal IPN without any problems. The customer has the choice of using his available credit before the total is finalized, so the store credit module should be compatible with any payment system.