Page 214 of 248 FirstFirst ... 114164204212213214215216224 ... LastLast
Results 2,131 to 2,140 of 2475
  1. #2131
    Join Date
    Aug 2012
    Posts
    45
    Plugin Contributions
    0

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

    so afr the only issue I tend to have now is the pic below...all apparently seems to be working correctly so try the uninstall and re-install of the sql first and see what happens....any idea on how to get this removed in the pic attachedName:  prp_tag.jpg
Views: 264
Size:  41.0 KB

  2. #2132
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

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

    Quote Originally Posted by lnsenterprises View Post
    so afr the only issue I tend to have now is the pic below...all apparently seems to be working correctly so try the uninstall and re-install of the sql first and see what happens....any idea on how to get this removed in the pic attachedName:  prp_tag.jpg
Views: 264
Size:  41.0 KB
    If you would read a page back you might find what the problem is.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #2133
    Join Date
    Aug 2012
    Posts
    45
    Plugin Contributions
    0

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

    Quote Originally Posted by countrycharm View Post
    If you would read a page back you might find what the problem is.
    NEWSFLASH...yes I did see this...You are getting that error because you didn't upload the definition file or you didn't upload it to the right directory. It goes in includes/languages/english/extra_definitions/custom/reward_points.php. If the file didn't upload it will cause that

    and yes I did install it correctly...

  4. #2134
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

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

    Quote Originally Posted by lnsenterprises View Post
    NEWSFLASH...yes I did see this...You are getting that error because you didn't upload the definition file or you didn't upload it to the right directory. It goes in includes/languages/english/extra_definitions/custom/reward_points.php. If the file didn't upload it will cause that

    and yes I did install it correctly...
    CountryCharm is right.. the only reason you see that text is due to a missing language file.. So let me ask this.. includes/languages/english/extra_definitions/custom/reward_points.php. Is the folder the rest of your template files sit in called "custom"? If not then this is the issue.. You need to re-name "custom" to match your template's folder name..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #2135
    Join Date
    Aug 2012
    Posts
    45
    Plugin Contributions
    0

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

    all on my end is fine....I have been modding etc for years....I am un-installing it and trying fresh to see what happens I can see his point, yet doesnt mean he is correct as something else may cause it....If I find out what I will post no worries

  6. #2136
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

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

    Quote Originally Posted by lnsenterprises View Post
    all on my end is fine....I have been modding etc for years....I am un-installing it and trying fresh to see what happens I can see his point, yet doesnt mean he is correct as something else may cause it....If I find out what I will post no worries
    It means that there is an issue with the language file.. whether that mean it's missing or corrupted.. the cause is a language file..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #2137
    Join Date
    Apr 2008
    Posts
    51
    Plugin Contributions
    0

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

    Quote Originally Posted by inception View Post
    another issue
    in admin>customers>orders, it shows "Reward Points earned: $0.00",
    i check the sql table zen_orders_total, for the order, text is 35, value is 0.0000
    what do i show "Reward Points earned: 35" in the admin order page?
    what do i fix it?
    I'm having the same problem.... hope someone replys with a solution... it does not affect on the customer side, it is only on the admin

  8. #2138
    Join Date
    Jun 2008
    Posts
    17
    Plugin Contributions
    0

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

    when a customer check out with paypal IPN (not paypal express checkout), will he get store credit automatically? Does anyone has ever make this module work with paypal IPN before?

    Thank you.
    ps: my zen-cart is 1.38A

  9. #2139
    Join Date
    Jun 2008
    Posts
    17
    Plugin Contributions
    0

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

    i was confirmed by numinix that the following module can not do that:
    http://www.zen-cart.com/downloads.php?do=file&id=1487

  10. #2140
    Join Date
    Jan 2012
    Posts
    89
    Plugin Contributions
    0

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

    Quote Originally Posted by SeanLoberg View Post
    v1.5 version: http://www.zen-cart.com/downloads.php?do=file&id=704

    Feature Question: the rewards program allows the automatic expiration of PENDING points by setting a future expiration in days:

    admin > config > rewards points config > Delete Old Reward Transactions Period = 30 days (for example below)

    For example, a customer buys product, receives 1000 points that are PENDING until the order has shipped, triggering the 1000 points to move from PENDING to EARNED. If the order does not ship in 30 days, the PENDING points expire. No problem, tested and works fine.

    What I want to do is expire EARNED points in 30 days. For example, a customer buys product, receives 1000 points that are PENDING. The the order is shipped, triggering the 1000 points to move from PENDING to EARNED. If the customer does not use/redeem the EARNED 1000 points in 30 days, the EARNED points automatically expire. A "Use 'em or Loose'em" scenario.

    Does this feature exist in the Mod? If not, any pointers on how to create this function ... Help greatly appreciated!
    I don't think you will get an answer to your question because I asked the same question perhaps a month or two ago, I think the module is not setup for that so I got one of my family members write me a code which I run daily, it's not the perfect way but itworks, you could set it up as a cron job if you like to run it daily, here is the code below:

    <?php

    try {
    $dbh = new PDO("mysql:host=localhost;dbname=DATABASE_NAME", 'DATABASE_NAME_Points', '1qwer13');

    $Totalquery = "Update reward_customer_points
    SET reward_points = 0.00
    Where customers_id not in (select customers_id from reward_status_track)";


    $Totalstmt = $dbh->prepare($Totalquery);
    $Totalstmt ->execute();

    echo 'Total Task Completed';

    }
    catch(PDOException $e)
    {
    echo $e->getMessage();
    }

    ?>

    Basically when you set up your reward points module pending points to expire in 30 days, the reward_status_track table keeps only 30 days of records so what the code does if it's not in the track table then it sets the points to Zero.

    You have to run this daily though, if not then the deleted records will be lost and won't be able to zero the reward points that are older than 30 days.

    I am sure some people here could make it much better and full proof and run it as a cron job.

    I am not an expert in code writing but was able to figure things out to solve my problem.

    Hope this helps,

 

 

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