Just checking. Wanted to make sure I didn't mess something up during one of the mod installs.
Printable View
Hello,
Does does mod works in the same way as Reward Points?
Thx
Which reward points?
The one by Hem can not redeem point yet, so it's kinda useless now. This one can ^^. And a new version is coming as well.
And I just installed the Reward Points yesterday. Any info when is the new version is coming out.
And, is this compatible with Easy Sign Up and Login and Order Steps?
Thx
Shouldnt conflict with any of the mods above.
Excellent. Is the latest version in the downloads section? And will this conflict with Reward Points mod?
I'm going to run through some tests tonight and possibly release it this evening.
Version 3 not out yet?
We are working on some of the minor bugs and documentation. Should be out either tonite or tomorrow.
It will be a major release tho, most of the code is re-written.
Version 3.00 has been released.
You can download it from any of the following locations:
http://www.numinix.com/index.php?mai...roducts_id=768
http://www.zen-cart.com/index.php?ma...roducts_id=501
Hi All, I'm new to zen-cart, and like what I see so far.
In our situation a customer must buy "in store" currency, then use that to purchase downloadable items from our store.
Will this store-credit module work for that, or is there something else more appropriate to my situation?
Thanks
Maureen.
CrazyCow,
We could develop something for you using this module. Please contact webmaster AT numinix DOT com and we'll discuss some possibilities.
Hello,
How can I make the credit display as points instead of currency (i.e. 20 points instead of $0.20)
Also, im thinking of other ways that buyers can earn points and I need to be able to have some kind exchange like 1000 points = $1.00 or something like that.
Lastly, why do we need to install module manager?
Thx for this great mod!!!
Have installed the module manager (and required shared classes), and when I try to install Store Credit using the module manager I get the following error:
(The prefix for zen-cart in my db is "zen".)Quote:
1146 Table 'zencart.zen_sc_customer' doesn't exist
in:
[ALTER TABLE zen_sc_customer rename as sc_customers;]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Any idea what I'm doing wrong, or alternatively please tell me where this message is generated so I can work out what I'm doing wrong.
Exactly where do you get this message?
Is it possible to have a version without having to install module manager?
While you could install all of the .sql files manually from the module_installation folder, it is advised that you do use the installer as we will be using it for most of our future releases to combat the number of people who need help copying and pasting a .SQL file into the Install SQL Patches module...
But the module manager releases are all alpha? No final releases has been released as of yet so im a bit reluctant to install.
Lastly, can the following be done?
How can I make the credit display as points instead of currency (i.e. 20 points instead of $0.20)
Also, im thinking of other ways that buyers can earn points and I need to be able to have some kind exchange like 1000 points = $1.00 or something like that.
Sure, drop the currency output so that it doesn't show the dollar sign and multiply the output by 100 will make 0.20 = 20. Then add the words points: 20 points.
When the customer checks out it'll show apply 0.20 still, so you would also need to edit ot_sc to make it DISPLAY 20 instead of 0.20.
You want to edit only the parts that are outputting something to be displayed. The underlying code should still display $0.20 so it can calculate the order total correctly.
If you want us to do this for you, please contact [email protected] and we can discuss implementing it into the code.
Is there a "package" for share_classes or do I have to make my own?
GJW
Weird, it seems like the first patch was not run correctly.
Try to run this from tools->sql patch first:
Code:CREATE TABLE IF NOT EXISTS sc_customer (
`customer_id` bigint(20) NOT NULL default '0',
`amount` float NOT NULL default '0'
);
Further questions regarding module manager should be posted at:
http://www.zen-cart.com/forum/showth...module+manager
Questions regarding the Store credit and reward point module should be posted at:
http://www.zen-cart.com/forum/showth...t=reward+point
This thread is for the original Store Credit module only. I dont want to go off topic here, so I wont answer any future question regarding the 2 modules above in this thread.
Yea, I caught that and adjtusted my table alraedy, but I belive your code would have fixed it. I got a error saying it already exists...so can't say for sure.
I'm trying to create a test order but haven't gotten anything. Do I need to run CRON for this, even if time is set at 0?
Thanks
GJW
Is it a test site? I want to check the admin side if possible. Please do not post further question in this thread though. See my post above.
Hi everyone,
I've also installed the module manager and all of it's classes. My question, since there aren't any directions anywhere that I could find, is: How to use the module manager???
Do I just drop files that haven't been merged or copied into the catalog folder and let the manager find them? Do I put them into a special folder? What? How?
New to ZenCart. All help is appreciated.
Raven
just upload using the same structure then in ADMIN->TOOLS->MODULE MANAGER you can install the sql patches.
I still get the error with store_credit3.01b +module_manager_alpha4 .:frusty:
I clicked update and got this: 1146 Table 'ec968_comsql3.sc_customers' doesn't exist
in:
[show fields from sc_customers]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
How to uninstall store_credit3.01b +module_manager_alpha4 ?
Hi
The store credit module seems to work OK, and I can get it to display the potential reqard points that can be earnt. The problem is it won't display the potential reqard points on items which have free shipping. Can anyone help?
If there are many customers (>10k) admin/store_credit.php starts to run sloooowly and it eats up a lot of resources. To address that, change admin/store_credit.php:
toPHP Code:
function store_pending_rewards() {
global $db;
$customers = $db->Execute("SELECT customers_id FROM " . TABLE_CUSTOMERS . " ORDER BY customers_id ASC");
while (!$customers->EOF) {
$customers_id = $customers->fields['customers_id'];
$pending_rewards = $this->get_pending_rewards($customers_id);
if($pending_rewards == 0.0) { $customers->MoveNext(); continue; }
$db->Execute("UPDATE " . TABLE_STORE_CREDIT . "
SET pending = " . $pending_rewards . "
WHERE customers_id = " . $customers_id . "
LIMIT 1");
$customers->MoveNext();
}
}
PHP Code:
function store_pending_rewards() {
global $db;
$customers = $db->Execute("SELECT DISTINCT customers_id FROM " . TABLE_SC_REWARD_POINT_LOGS . " ORDER BY customers_id ASC");
while (!$customers->EOF) {
$customers_id = $customers->fields['customers_id'];
$pending_rewards = $this->get_pending_rewards($customers_id);
if($pending_rewards == 0.0) { $customers->MoveNext(); continue; }
$db->Execute("UPDATE " . TABLE_STORE_CREDIT . "
SET pending = " . $pending_rewards . "
WHERE customers_id = " . $customers_id . "
LIMIT 1");
$customers->MoveNext();
}
}
Hi
I have been using this module for a while now and it works perfectly. :clap: I am however wondering if anyone has ever thought to create a report that can be run to check variances on the admin side.
Basically what I would liek to be able to do is check which accounts have had movement on their store credits and by how much each month? I have various staff that work on the admin side and they need to add on store credits for certain customers once a month. As there is no way for me to specify how many credits to add on I need a double check to make sure that the correct credits have been added for the month.
Is there anyone that can assist me with this?
KR