If i try install for 1.3.9h have problem ? It's work well ?
If i try install for 1.3.9h have problem ? It's work well ?
I would double check all the paths in both "configure.php" files... If these are off in any way, Zen Cart will report errors loading files during the auto_load sequence...
If you are using a web based "file manager" to upload files, I would trying to upload using FTP software on your computer (and making sure it sends php and other text files as type TEXT). Doing so ensures line endings are converted (apple, windows, and unix use different line endings)... Probably not the problem, but just something one can also check...
The glass is not half full. The glass is not half empty. The glass is simply too big!
Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker
where the code for reward points ? in the tpl_product_info_display.php ver 1.3.9 ? need merge with my tpl_product_info_display.php
I've been using this for about 2 years now and it works great!
Is there any way to have it configured so that if a product is on sale, the customer can't redeem their points on that product? How about if the customer has 5 products in their cart and one of them is on sale and the other 4 aren't, can the redeem be calculated on the 4 that aren't on sale and ignore the one that's on sale?
No the reward points system will not do what you are asking. It will require rewriting the code. You will have to hire someone to get those extra features.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
It was never added or updated in zen cart 1.3.9. Look at the tpl_product_info_display.php in zen_1.5.0 and copy this block of code and put it where you want it to show.
PHP Code:
<!--bof Product Reward Points block -->
<h2 id="productRewardPoints" class="productRewardPoints">
<?php
/**
* display the product reward points
*/
include($template->get_template_dir('/tpl_product_reward_points.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_product_reward_points.php');
?>
</h2>
<!--eof Product Reward Points block -->
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
do you know why it does not work with 1.5.1 in the admin editing orders show 0.00 points but in invoices it show them can any one help-??
Hello, just wanted to report what i think is a bug.
The Issue:
When a sale is active the reward points show properly on product details pages, but incorrectly at checkout and are added with pre sale values.
The Solution: In catalog/includes/functions/extra_functions/reward_points_functions.php -> function GetProductRewardPoints
when checking to see if a sale price is active it also stipulates the condition && !$attributes.
I believe this to be error - the result is that products with attributes do not get rewards points for special pricing. The fix for me is just to remove that condition. now the condition is this...
Hopefully this helps someone. I've also made a small hack to make the maximum points per purchase an ultimate maximum if anyone is interested in that, ie customers cannot receive more than 'n' number of points before spending more.PHP Code:
$special_price=zen_get_products_special_price($products_id);
if(REWARD_POINTS_SPECIAL_ADJUST=='1' && $special_price )
$reward_price=$special_price;
You are the first person to ever report a bug in Sales/Specials. I have checked my test site and I don't have the problem you are experiencing neither has anybody else.
Go back and make sure all the reward points files uploaded correctly. It is something in your installation not in the module.
Also the hack you are offering makes no sense. Reward points was created to reward customers when they purchase products from your site. Why would you penalize the customer from earning more points just because they don't spend them when you want them to. There is a feature in admin/modules/order total/Reward Points you can set to Automatic. It will select all Reward Points earned by the customer and enter them at checkout. So the hack you have come up with is of no use.
Last edited by countrycharm; 14 Feb 2014 at 05:19 AM.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
Bookmarks