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 attached![]()
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 attached![]()
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
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.
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
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.
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
i was confirmed by numinix that the following module can not do that:
http://www.zen-cart.com/downloads.php?do=file&id=1487
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,
Bookmarks