Re: Reward Points Module- Live Release now available.
Hey guys,
I have one problem with the redeemed points & when order is cancelled.
Eg :
1. customer redeem points (eg : redeem 500 points) during check out & gotten the order.
2. What if the customer wanna cancel the order (and we delete it).
3.The redeemed points (500 points) are not going back to "earned" points.
Any solution for this?
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
juneloweelyn
I just installed this mode, but i have one problem:
i have super orders & am using it to update.
IN SUPER ORDERS
When i change status from pending to other status , the pending points doesnt transfer to "earn points"
IN ORDERS (normal )
When i change the status, the pending points will transfer to "earn points"
anyone facing the same? and what to do about it?
I don't use Super Orders but you can try what curt_l did and see if that works for you.
http://www.zen-cart.com/showthread.p...65#post1143265
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
skywalker826
hi CountryCharm,
Thanks for your tips.
The one thing that I mentioned:
for certain product, it has discounted price, hence is it possible to configure that - when points are used, customer pays the "regular price" for that certain product and not a discounted price ? In another word, do this reward full suite module able to differentiate if certain product is having discounted pricing or regular pricing ?
Regards,
Sky
Quote:
In another word, do this reward full suite module able to differentiate if certain product is having discounted pricing or regular pricing ?
Reward Points only recognizes "Adjust Reward Points for Sales/Specials" Either you use Always use the base price.
or
Use price less Discounts and Specials.
It does not work the way you are describing. You can hire a coder I suppose.
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
Beyond Dreams
Hi,
I downloaded this plugin to my computer. I read the instructions and I can not unzip this file to my server since it is not a local computer, I also do not have a "my custom template" since this was something I was not aware to make when I started this process, I will have to figure out how to create that when i am done I guess. It's too late to start over. Do I just upload the folders I need? I put zen cart into my main directory on my server. When I clicked upload folder I got a warning msg to download some java application that warned me the plugin has security vulnerabilities.... Any insight on these issues would be greatly appreciated.
Unzip the Reward Points folder on your computer.
Your shop has a admin folder that is named admin or named to a custom name that you changed it to. You need to put the contents of the Reward Points admin files inside your custom admin folder.
Same thing with the includes folder.
In the includes folder change the name of the custom folder name to the name of your custom folder name that you are using.
Upload of files to your server.
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
Jeff_Mash
Edit - I figured it out. Didn't see the Modules -> Order Total configuration.
Glad you got it working...
Re: Reward Points Module- Live Release now available.
Thank you so much!
Quote:
Originally Posted by
countrycharm
Re: Reward Points Module- Live Release now available.
Quote:
Originally Posted by
juneloweelyn
Thank you so much!
Glad to help.....
2 Attachment(s)
Re: Reward Points Module- Live Release now available.
Quick question ---- first off, I LOVE this mod, and it's all working great except for one thing.
In the Zen_Orders_Total table, the module is leaving the VALUE blank ($0.00). So even though the text correctly shows the correct points, the value isn't updated into the database.
Here is a screenshot to show you what I mean:
Attachment 12140
As you can see, the points are correctly recorded, but the value is left blank. Therefore, when I look at my orders, I can't see how many points were allocated:
Attachment 12141
Re: Reward Points Module- Live Release now available.
Hi, Thank you for the great module!!
Is there a code to show the Reward point full suite Group name to the customers?
For example, on the reward point side box, the group name will be shown to the customers.
If I assign the group name "Beautiful Customer" to one customers, then the customer can see his group name(level)
I tried some tricks but no works...
The group name is only showing on the Admin pages... not for the customers.
I'm trying to build the customer membership levels, so I need to display the each group name to my each customer...
Any suggestions will be appreciated.. Thanks.
Re: Reward Points Module- Live Release now available.
SOLVED!
First, on
/www/includes/functions/extra_functions/reward_points_functions.php
I added a new function ,after the function GetRedeemRatio() :
PHP Code:
function GetRedeemGroup($customers_id)
{
global $db;
$sql = "SELECT gp.group_name
FROM ".TABLE_GROUP_PRICING." gp
LEFT JOIN (".TABLE_CUSTOMERS." as c)
ON (gp.group_id=c.customers_group_pricing)
WHERE c.customers_id='".(int)$customers_id."'
ORDER BY gp.group_id
";
$result=$db->Execute($sql);
if($result)
return $result->fields['group_name'];
else
return 0;
}
and
on
/www/includes/templates/YOUR_TEMPLATE/sideboxes/tpl_reward_points.php
after $reward_points=GetRewardPoints($_SESSION['cart']->get_products()); (LINE AROUND 11)
add this :
PHP Code:
$group_name=GetRedeemGroup($_SESSION['customer_id']);
and one a line about 25, afther the if($reward_points>0) statement
change the line
PHP Code:
$content='<div class="cartBoxRewardPoints">'. .....
to :
PHP Code:
$content.='<div class="cartBoxRewardPoints">'. '<p style="color:green;text-align:center;font-size:12px;font-weight:bold;">My Level : ' . $group_name . '</p><br />' . $customers->fields['group_name'].(int)$reward_points.' '.REWARD_POINTS_IN_CART_TAG.'</div>';
This will make you able to show the customer's group name on the sidebox.
I was trying to build the customer's membership policy,
and now I finally can.
Thank you for this great module... that I can provide betther service to my customer.