Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
DarrenQ
Where did you find version 1.32a to?
Also my points are adding up incorrectly for each product.
It should be £1 is equal to 1 point. however an item that is worth £32.99 is coming up as being worth only 28 points. It was not doing this yesterday, it was correct. ANyone got any ideas?
I have now found 1.32a and have also worked out that the display points on the product info page is calculating the points minus the added VAT. However if you go to checkout then the points are calculated on the sub total including the VAT.
So my quesiton is how do i get the points on the product info pages to calculate the points based on the total price and not the price minus VAT.
http://www.gamebeta.co.uk/index.php?...&products_id=8
Heres a link for an example. It should be showing 28 points not 24 which is the base price minus VAT
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
DarrenQ
I have now found 1.32a and have also worked out that the display points on the product info page is calculating the points minus the added VAT. However if you go to checkout then the points are calculated on the sub total including the VAT.
So my quesiton is how do i get the points on the product info pages to calculate the points based on the total price and not the price minus VAT.
http://www.gamebeta.co.uk/index.php?...&products_id=8
Heres a link for an example. It should be showing 28 points not 24 which is the base price minus VAT
I have fixed it now, just made each point worth 1.175 to account for the 17.5% UK VAT and it is fine now :D
Hope this helps anyone if they have a similar problem
Re: Reward Points Module- Live Release now available.
Sorry could not edit abpve post.
It isn't fixed like this as it then adds the points to the Total aswell. SO somethign that costs 14.99 is acually giving 18 points.
Anyone got any ideas how to fix this issue
Re: Reward Points Module- Live Release now available.
Ok, I've tested version 1.32a and it indeed fixes the zero value checkout bug :clap:
Can you tell me if it's possible to make the Reward Points information on the checkout screen a bit clearer for the customer?
Rather than having this....
Current Reward Points: 428 points earned
Value of Redeemed Reward Points: £3.00
I'd like to show both the number and value of points for both so the customer knows how many points will be used for the order and the current value of the points they hold. Something like this.....
Current Reward Points earned: 428 points (£4.28)
Reward Points to Redeem For This Order: 300 points (£3.00)
Re: Reward Points Module- Live Release now available.
Hem:
Installed RP Version 1.32a. Clean new install. Ran rpd.php. No errors. Just the version report as follows:
Zencart version: Zen Cart v1.3.8a
PHP version: 5.3.1
MySQL version: 5.1.41
(running on XAMPP localhost for testing before installation on live server.)
Everything works, except that no points are shown in the Admin/Customers/Reward Points. No pending, no earned. I can award customers points in the Admin, and they can be redeemed as normal. Points accrued show in sideboxes, shopping cart, checkout and order confirmation. Points "earned" show up in customer account for each past order.
But the points don't really exist, unless I award them thru the Admin. The cart is simple - no shipping, no taxes, no on-line payment systems. (purchase orders and off-line CC only).
I read all 147 forum pages, and checked around in the PHP. Everything seems normal. No error messages or DB errors or anything. It's just that the points are not transferred to either "pending" or "earned" in the Admin/Customers and cannot be used on subsequent orders, because they do not exist.
Only mods are Super Orders (points show up there) and Purchase Orders.
Got any ideas? I tried everything before posting.....
Re: Reward Points Module- Live Release now available.
I'm not sure if this question was asked already... i did surf through several pages (but not all of them) and can't seem to find it.
Is there a possible way to display the accumulated rewards points each customer earns on their "My Account" page?
Because right now, the only way to keep track of how much reward points earn is to go to checkout...
In the readme.txt it said there was an update for that on v. 1.26, but it doesn't seem to show up...
Re: Reward Points Module- Live Release now available.
Cdkl,
Have you taken the My Account Information Link in the My Account page?
If memory serves correctly it's the first link.
I've installed version 1.32a of this mod and I can see accumulated points on that page
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
damiantaylor
Cdkl,
Have you taken the My Account Information Link in the My Account page?
If memory serves correctly it's the first link.
I've installed version 1.32a of this mod and I can see accumulated points on that page
Unfortunately, yes. I have clicked on the "View or change my account information" and all the other links, but there is no information about reward points....
Another strange thing is, the "Shopping Cart with Rewards" sidebox does not exist in: Admin->Tools->Layout Box Controller, BUT my shopping cart does display the reward points.
Re: Reward Points Module- Live Release now available.
I have the reward points module installed. and in admin, under configuration, there is a an option "reward points" that I can go through to edit and so forth... But under the catalog category, there is no rewards option. In fact I don't see it under the modules/order total, or in the tools/layout box controller. How do I get those to show? thanks!
Re: Reward Points Module- Live Release now available.
Cdkl,
Try uploading tpl_account_edit_default.php in includes/templates/yourtemplate/templates again. Or, if you have already made changes to that file, add the rewards section to your version:
Code:
<fieldset>
<legend><?php echo REWARD_POINT_TITLE; ?></legend>
<?php
$total_points=getCustomersRewardPoints($_SESSION['customer_id']);
if(defined(MODULE_ORDER_TOTAL_REWARD_POINTS_STATUS) && MODULE_ORDER_TOTAL_REWARD_POINTS_STATUS==true)
{
$redeem_ratio=GetRedeemRatio($_SESSION['customer_id']);
$points_value=$currencies->format($total_points*$redeem_ratio);
}
else
if(defined(MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_STATUS) && MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_STATUS==true)
{
$row=GetRewardPointDiscountRow($total_points);
$value=($row!=null?$row['discount']:0);
if(MODULE_ORDER_TOTAL_REWARD_POINTS_DISCOUNT_TYPE==0)
$points_value=$value."%";
else
$points_value=$currencies->format($value);
}
echo '<label class="inputLabel">'.REWARD_POINT_PROMPT.'</label>'.'<label class="inputLabel">'.$total_points.'</label>';
echo '<br class="clearBoth" />';
echo '<label class="inputLabel">'.REWARD_POINT_VALUE_PROMPT.'</label>'.'<label class="inputLabel">'.$points_value.'</label>';
?>
<br class="clearBoth" />
</fieldset>
......that should do it.