Page 10 of 248 FirstFirst ... 891011122060110 ... LastLast
Results 91 to 100 of 2475
  1. #91
    Join Date
    Apr 2008
    Posts
    7
    Plugin Contributions
    0

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

    Quote Originally Posted by hem View Post
    yep- already coded, now just testing.
    thank you soo much...

  2. #92
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

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

    Quote Originally Posted by Rasyr View Post
    yeah, 1 person out of like 4 that used Paypal ended up with point in the Pending category (still, they never moved to earned automatically though).

    And to make it interesting, the day before, somebody else order the exact same thing (specific book with a bundled PDF) and he didn't get any points.

    And a guy who just ordered and paid through paypal didn't get his points put into Pending (or Earned)

    Aha! A pattern emerges!!! All of the Paypal purchasers who did NOT receive their points in Pending (we can worry about them being automatically moved to Earned later) had a "Trans. type" of "unique". The guy who's purchase gave him his RP in Pending had a "Trans. Type" of "web_accept".

    That has to be significant somehow....
    Rasyr- I will look into the transaction type and see what relevance it has.

    Regarding your earlier comment about paying with PayPal but not returning to your site- As the PayPal return is to checkout_process.php, then there will be no reward of points unless this is run. Unfortunately the points cannot be rewarded before PayPal is called otherwise the customer could end up with RP even if they cancel the PayPal transaction

    Question- If I remember rightly, you use phpmysql- Could you check the reward_status_track table and see if any of the "non appearing" transactions are there (but with zero points in pending or earned)- Might add another piece to the jigsaw.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  3. #93
    Join Date
    Oct 2007
    Posts
    41
    Plugin Contributions
    0

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

    Quote Originally Posted by hem View Post
    Rasyr- I will look into the transaction type and see what relevance it has.

    Regarding your earlier comment about paying with PayPal but not returning to your site- As the PayPal return is to checkout_process.php, then there will be no reward of points unless this is run. Unfortunately the points cannot be rewarded before PayPal is called otherwise the customer could end up with RP even if they cancel the PayPal transaction

    Question- If I remember rightly, you use phpmysql- Could you check the reward_status_track table and see if any of the "non appearing" transactions are there (but with zero points in pending or earned)- Might add another piece to the jigsaw.
    Andrew,
    I mention before the paypal problem.
    I test many times and the paypal returning to my site and create an order sucessful. Everything is working well.
    The only problem is no pending point and no earned point.
    You can try the paypal via sandbox.

  4. #94
    Join Date
    Aug 2006
    Posts
    231
    Plugin Contributions
    0

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

    Quote Originally Posted by hem View Post
    Rasyr- I will look into the transaction type and see what relevance it has.

    Regarding your earlier comment about paying with PayPal but not returning to your site- As the PayPal return is to checkout_process.php, then there will be no reward of points unless this is run. Unfortunately the points cannot be rewarded before PayPal is called otherwise the customer could end up with RP even if they cancel the PayPal transaction

    Question- If I remember rightly, you use phpmysql- Could you check the reward_status_track table and see if any of the "non appearing" transactions are there (but with zero points in pending or earned)- Might add another piece to the jigsaw.
    Actually I use mySQL Front (a stand-alone app).

    And in looking, no, the Paypal orders (with the transaction type of "unique) are not in that table.

  5. #95
    Join Date
    Jul 2007
    Posts
    132
    Plugin Contributions
    0

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

    Andrew

    I could have swore it worked before, I know I tested it .. but it was with the beta, wonder fi somthing changed, but when changing order status with Super Orders, it will not redeem the credits (when moving order to status that should redeem)

  6. #96
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

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

    Quote Originally Posted by fiji View Post
    Andrew,
    I mention before the paypal problem.
    I test many times and the paypal returning to my site and create an order sucessful. Everything is working well.
    The only problem is no pending point and no earned point.
    You can try the paypal via sandbox.
    Fiji- according to the ZenCart Wiki on PayPal IPN I cannot test it with the sandbox and I have to use it in a live environment.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  7. #97
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

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

    Quote Originally Posted by NullMind View Post
    Andrew

    I could have swore it worked before, I know I tested it .. but it was with the beta, wonder fi somthing changed, but when changing order status with Super Orders, it will not redeem the credits (when moving order to status that should redeem)
    It should work- As long as Super Orders changes the order status (which I track on) the sync should change the point redeem also.

    I think I might have to stick version tracking into the code headers- Might help with all the old versions/new versions to make sure we're all singing off the same hymn sheet.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  8. #98
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

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

    Quote Originally Posted by pinetreecandles View Post
    I see what you mean now. I never noticed that before. All my testing I never had the amount to redeem exceed the subtotal. Good catch.

    I'm not a coder so I'm not sure what the side effects will be on changing the code from:
    Code:
    $order_total = $order->info['total'];
    to
    Code:
    $order_total = $order->info['subtotal'];
    I guess that's what test sites are for
    Hi PTC..

    Did the mod on this code work ? I dont want people to be able to redeem points against shipping fees, only against the goods.

    So I'm curious if this worked, if so, which file was it that you changed ?

    Thanks,
    Mike

  9. #99
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

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

    Hi,

    Is there a way to set the minimum order value that must be reached before Reward Points can be used ?

    Eg, Can I set a minimum say $100 order value before a customer can use points ?


    Cheers,
    Mike

  10. #100
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

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

    Quote Originally Posted by Mike_Dean View Post
    Hi,

    Is there a way to set the minimum order value that must be reached before Reward Points can be used ?

    Eg, Can I set a minimum say $100 order value before a customer can use points ?


    Cheers,
    Mike
    Yes- it's in the Reward Point configuration and is called 'Reward Point Redeem Minimum'.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

 

 
Page 10 of 248 FirstFirst ... 891011122060110 ... LastLast

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