Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
hem
Yes, that's the issue. Regular Paypal works. Paypal IPN (like Google Checkout) however does not use the same 'path' as any of the other payment methods and so the reward point mod never gets called.
I've tried various ideas to affect a workaround but none of them have been satisfactory. At this stage I think the only way around it is to modify the core code for the Paypal IPN (and Google Checkout) payment modules.
Hi Andrew, Is this something could be fixed in the next release? Thanks :smile:
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
hem
The CREATE TABLE is there for completeness. Also if you upgrade from a version prior to v1.03a then it's a requirement. Unfortunately MySQL does not have a IF TABLE NOT EXIST directive. Don't worry about it, it will fail gracefully.
To just apply the single change for this version copy and paste the following into Admin->Tools->SQL Patch.
Note: This applies for this release only.
PHP Code:
SET @group_id = '';
SELECT (@group_id := `configuration_group_id`) FROM `configuration_group` WHERE `configuration_group_title` LIKE 'Reward Points';
REPLACE INTO `configuration`
(`configuration_id` ,`configuration_title` ,`configuration_key` ,`configuration_value` ,`configuration_description` ,`configuration_group_id` ,`sort_order` ,`last_modified` ,`date_added` ,`use_function` ,`set_function`)
VALUES (NULL , 'Limit maximum Customers on Listings', 'REWARD_POINTS_CUSTOMER_LIMIT', '50', 'Set the maximum number of records to appear on each page under Customer Reward Point admininstration page.', @group_id, '11', NULL, now(), NULL , NULL);
Thank you so much the SQL update worked!
Re: Reward Points Module- Live Release now available.
Hello. First up great stuff! Second.. How do i turn it off? it now shows
-1 PRODUCT_REWARD_POINT_TAG in all my products.. is there a line i can remove ?
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
LekeFly
Hello. First up great stuff! Second.. How do i turn it off? it now shows
-1 PRODUCT_REWARD_POINT_TAG in all my products.. is there a line i can remove ?
Just delete includes\templates\YOUR CUSTOM FOLDER\templates\tpl_product_info_display.php
Re: Reward Points Module- Live Release now available.
I have just installed the Easy sign up and log in mod and the checkout without account mod.
The problem I have is that the Reward points mod is now ignoring the redeem maximum of 25% I had set up.
It will now only redeem 25p.
if I change it to 50% then it redeems 50p.
I'm not using the latest release of reward points, using version 1.13a I think.
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
hem
Already on the list (Reward Points- Advanced Redeem)
excause me, that mean customer can choose they wanted how many points to spend include thire own total reward points ??:oops:
thx
Re: Reward Points Module- Live Release now available.
Andrew, I try to install the mod in my other store... and again... doesn't work...
can you take a look there please?
Re: Reward Points Module- Live Release now available.
me again... in the fist store where I installed... and you fix my problems...
http://digiscrapsmania.com/tienda
I try to edit the points of some customers, to give them points for your old orders:
Customers/Rewards Point
but there, I don't see all my customers, only 40 and I don't have way to change to the next page... something is wrong there...
Re: Reward Points Module- Live Release now available.
I continue here....
which is the difference between pending points and earned points?
I can't understand why in some orders give pending points and in other earned...
I have an order, where said: reward points earned: 2, but when I go to Customers/Reward Points, that customer have earned 0, pending 0
In other case, I have an order with: reward points earned: 1, but when I go to Customers/Reward Points, that customer have earned 0, pending 1
:frusty: someone who use the mod can explain me? thanks in advance...
-1 showing for products set to radio of 0
After upgrading from v1.13 we have run into the issue of products that have a ratio of 0 display "-1 Reward Points". I have attempted to set the radio all the way down to the individual product the same results. While I could modify the code to force a 0 to be displayed in place of the -1, I feel it is better to find out where the -1 is coming from.