Re: Reward Points Module- Live Release now available.
I think (can not guarantee) that the following set up will solve your issue:
Go to Configuration > Reward Points > Advanced Reward Point Calculation Rules and click Edit. In the Module drop-down box select ot_coupon. In the Action drop-down box next to it select Subtract and click the green cross button to its right. Then click Update and do some test orders with or without using coupons.
Please post back whether this solves the problem or not for other readers to benefit. Good luck!
Re: Reward Points Module- Live Release now available.
Thanks! I'll try that. I hadn't even gone into the advanced editing...thanks:)
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
bumba000
Okay, I've noticed that since the integration of this mod, it seems as though the sunrises period is not being respected.
The function mentioned above is the entire reason why. I had noticed that a customer would place an order on the 5th and they'd have points rewarded by the 9th even though our sunrises = 31.
The sunrise function also does not work for me. Does your modification in this message fix the sunrise function?
Re: Reward Points Module- Live Release now available.
I have a question about limiting redemption to a category. I sell a jewelry line with one element, called jewelpops and the manufacturer allows us to use a promotion of "buy 10 get 1 free". Since I didn't find any modules to track sales that way, I decided to use the reward points system.
I need to only allow the customer to redeem their points toward jewelpops and not the other jewelry.
I have config to reward purchase points only for jewelpops but can't seem to find how to restrict the points redeeming to jewelpops only.
Thanks in advance! Sandra
Reward Points Version 1.32a
Zencart v1.3.9h
Re: Reward Points Module- Live Release now available.
Okay I am trying to uninstall this add on but I am having a bit of trouble doing that.
I think I have taken out everything that has to do with this module but I noticed that in my admin area I still have under config rewards points and I also noticed that when I check out I have these two warnings:
WARNING: Could not locate language file: includes/languages/english/modules/order_total/ot_reward_points.php
WARNING: Could not locate language file: includes/languages/english/modules/order_total/ot_reward_points_display.php
I deleted these. How do I get rid of the warnings since I deleted them?
Site is http://www.frompropertorocker.com
Thanks!
Re: Reward Points Module- Live Release now available.
I have a mod that already edited the tpl_product_info_display. What is the change to this file in this mod, so that I can implement it using my already modified tpl_product_info_display file.
Re: Reward Points Module- Live Release now available.
Also I am getting a paypal error on check out... 10413 Transaction refused because of an invalid argument. See additional
error messages for details. - The totals of the cart item amounts do not
match order amounts.
Re: Reward Points Module- Live Release now available.
Just installed this plugin and like it a lot.
I want to add something to the product info page, Right now it just shows how many points can be earned.
I added this to the "tpl_product_info_display.php" page
<!--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 -->
I would like to center the text and also add something like " You can get" and the the bonus points.
How do I have to code this?
Thanks for any help
Michael
Re: Reward Points Module- Live Release now available.
Hi Michael,
Adding the red text in your code should do what you want:
Code:
<!--bof Product Reward Points block -->
<h2 id="productRewardPoints" class="productRewardPoints"><center>You can get
<?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');
?>
<center />
</h2>
<!--eof Product Reward Points block -->
I have also added the following to my stylesheet for the yellow box effect as in this test product:
http://www.athenscollectibles.info/i...&products_id=1
Code:
.productRewardPoints {
margin-bottom:1em;
padding-top:3px;
padding-bottom:3px;
border:1px solid #00ff00;
background-color:#fdf5e6;
color: #ff0000;
}
You can of course play with css for different effects.
I hope this helps. You may want to post back if it was successful. This could benefit other users with similar needs. Have a nice evening. :smile:
Re: Reward Points Module- Live Release now available.
Thank you so much for your help.
Works perfect.
I really like on your site the Q & A regarding the "reward points"
It is really neat and space saving being able to click on a question and the answer popups at the bottom.
What script are you using to accomplish this if you don't mind telling me
Thanks
Michael