Page 147 of 248 FirstFirst ... 4797137145146147148149157197247 ... LastLast
Results 1,461 to 1,470 of 2475
  1. #1461

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by DarrenQ View Post
    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

  2. #1462

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by DarrenQ View Post
    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

    Hope this helps anyone if they have a similar problem

  3. #1463

    Default 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

  4. #1464

    Default Re: Reward Points Module- Live Release now available.

    Ok, I've tested version 1.32a and it indeed fixes the zero value checkout bug

    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)

  5. #1465
    Join Date
    Mar 2009
    Location
    Seattle
    Posts
    13
    Plugin Contributions
    0

    Default 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.....

  6. #1466
    Join Date
    Jan 2010
    Posts
    10
    Plugin Contributions
    0

    Default 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...

  7. #1467

    Default 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

  8. #1468
    Join Date
    Jan 2010
    Posts
    10
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by damiantaylor View Post
    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.

  9. #1469
    Join Date
    Jun 2010
    Posts
    28
    Plugin Contributions
    0

    Default 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!

  10. #1470

    Default 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.

 

 

Similar Threads

  1. v139h Reward Points module display order totals including reward points
    By irsarahbean in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Jun 2013, 01:19 AM
  2. Reward points module : 0 points earned
    By jonnyboy22 in forum Addon Payment Modules
    Replies: 5
    Last Post: 5 Jun 2012, 09:52 AM
  3. Reward Points module- points not calculated correctly
    By cpoet in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Sep 2010, 05:02 PM
  4. Reward Points Module - Hide message when 0 points offered
    By expresso in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Dec 2008, 06:58 PM
  5. Experimental Reward Points Module
    By precursor999 in forum Addon Payment Modules
    Replies: 7
    Last Post: 2 Apr 2007, 09:32 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR