Re: Reward Points Module- Live Release now available.
HI -again - got the server upgraded to mysql 5.
I still see the following behaviour - the reward points to be deducted come from the order last but one. As below order 1, affects the point earnt on order 3, and not order 2. Any ideas?
Peter
Hello,
I have searched the thread to see what I'm doing wrong and could not find any reference to this.
Running zen 1.3.8a and 1.26a - I have a fresh install of both on my dev environment.
What I see is that for the first transaction everything is fine.
I have 1 product which earns 1000 points each time purchased and redeems to $10 so reward is set to 10, redemm 0.01
Purchase 1 : 2 items = 2000 in cart, turns into = earned 2000 points
Purchase 2: 1 item = 1000 incart, turns into = earned 1000 points (no reduction for the $20 redeemed)
purchase 3: 1 item = 1000 in cart, turns into = earned 800 - the purchase redeems the 1000 = $10. (the $20 redeemed from purchase 1 now impacts on rewards earnt - as only 800 and not 100)
purhcase 4: 1 item = 1000 incart, turns into = 900 - the purchase redeems the 1000 = $10. (the $10 redeemed from purchase 2 now impacts on rewards earnt - as only 900 and not 100)
It seems that the reduction in reward points awards that should occur when some are redeemed is impacting the next purchase and not this one. Any ideas - everything else is running fine on this new install.
You can try at www.ishanipeter.com/shopping - the product that I have tested with is the $100 buying test product.
Re: Reward Points Module- Live Release now available.
Hi again,
Sorry another post - If I wanted to remove the deducting points spent from pointed being earnt - where is that in the current php files? As that would solve the situation I'm observing above.
Peter
Re: Reward Points Module- Live Release now available.
having real problems trying to get this too work. it all appears on the admin panel with no errors but no matter what i try with layout settings it wont display on the website itself. see for yourself at www.xboxmemberships.co.uk
Re: Reward Points Module- Live Release now available.
ok so run the upgrade.sql through the system and bingo finally shows up in final stage of checkout but shows as following.....
Reward Points You may click to redeem any collected Reward Points. Your redeemed points will be applied to the total and reflected in your cart after to click continue.
Current Reward Points:
10 CUSTOMER_EARNED_POINT_TAG
Value of Redeemed Reward Points:
£0.10
Redeem Reward Points:
and doesn't show anywhere else???
Re: Reward Points Module- Live Release now available.
oh and the grammar no offence but its terrible!!
"to the total and reflected in your cart after to click continue."
should definetly read...
to the total and reflected in your cart after YOU click continue.
im debating if to just remove this module all together??
Re: Reward Points Module- Live Release now available.
thankyou hem for the install :bigups:
Re: Reward Points Module- Live Release now available.
Hi Could anyone advise please i can't - Switch on the 'Shopping Cart with Rewards' sidebox using Admin->Tools->Layout Box Controller
For some reason its not in there ??? iam using a different template than the standard one it called "pinky winky" could it because iam using a different template, would i need to upload a file etc into the "pinky winky" folder.
Or have i just missed something else
Thanks
Re: Reward Points Module- Live Release now available.
Ive managed to sort it i found your -
Reward Point Mod Diagnostic Tool.
This is available here: http://www.omnicia.com/rpd.zip
This should a couple of files missing which were winkypinky template files, i made these files and its all up and running.
Just gotta learn how to use this mod.
Many many thanks for sharing this mod :clap:
Re: Reward Points Module- Live Release now available.
Sorry just one small question in the rewards admin folder there is a file called - sqlpatch.zip
Do i have to apply this patch ??
Many thanks
Re: Reward Points Module- Live Release now available.
I have the newest version, I use a cash value discount not a % percent..... but in the "My account" is shows it as a percent and everything else is a $ as it should be
PHP Code:
if(defined(MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_STATUS) && MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_STATUS==true)
{
$row=GetRewardPointDiscountRow($total_points);
if($row!=null)
$points_value=$row['discount'].'%';
else
$points_value="0%";
}