Re: Store credit and reward point module
I have also experienced the problem with the Store Credit mod conflicting with the Group Discount Pricing. It only works if you sort the store credit BEFORE Group Pricing. Sorted AFTER, it generates a negative order total. And the Group Pricing is omitted if you have available store credit that covers the total amount of the order. Then Group Pricing is never considered. I want the store credit to work as the Gift Voucher would (all discounts are calculated first and then the GV or Store Credit is deducted), but it doesn't. Did anyone ever find a fix to this?
Re: Store credit and reward point module
Will this plug-in work with zc V1.5? We would like to use it but have had some major issues with older plugins. Would you recommend installing an older version of zc?
Re: Store credit and reward point module
Will I be able to upload a list of say 30-50 customers and give them each a different amount of store credit. I currently send 30-50 out each week as gift vouchers but then they need to add them to their account. Some have never figured out how to do that yet. I spend a great deal of time talking them through each step. If I could upload a csv file my life would add on two or more hours a week of free time.
Will this module do that?
Oh, the Numinix site looks like the module doesn't work with ZCv1.5. The download site looked like it did. I am a bit confused here. supported? or no?
Re: Store credit and reward point module
I have this module running on in my admin site. Unfortunately I am the operator of my site and I know enough to get things working but not perfect or as intended so I have to type in the url just to get to the store credit page. For me its the only option as it works. I want to be able to sell store credit. I want to create a virtual product that allows a customer to select a price say $10 and they get $20 store credit. Is there a way to do this that will automatically give the customer this credit or will I have to manually put it in?
Re: Store credit and reward point module
Hi
Have installed this module on my site but store credit is not appearing in my customers menu. The side box appears okay but I am unable to add credit to any accounts.
I am running zencart V1.5.0 and have double checked I have uploaded all the correct files in the right place.
Has anyone else had this problem?
Re: Store credit and reward point module
Quote:
Originally Posted by
MelodyW
Hi
Have installed this module on my site but store credit is not appearing in my customers menu. The side box appears okay but I am unable to add credit to any accounts.
I am running zencart V1.5.0 and have double checked I have uploaded all the correct files in the right place.
Has anyone else had this problem?
I am having the same problem in 1.5.1 - it doesn't show up in the "Customers" menu. It does work - if I set it to automatically add store credit to new accounts, it does that just fine - but I can't edit the store credit or anything in the Admin tools. It looked to me like it was missing an initialization .php file for adding it to the menu, which apparently became a thing with 1.5, so I attempted to create one. I called it init_store_credit.php, stored it in admin/includes/functions/extra_functions and put the following into it:
Code:
<?php
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
//----
// If the installation supports admin-page registration (i.e. v1.5.0 and later), then
// register the New Tools tool into the admin menu structure.
//
if (function_exists('zen_register_admin_page')) {
if (!zen_page_key_exists('toolsStoreCredit')) {
zen_register_admin_page('toolsStoreCredit', 'BOX_CUSTOMERS_CREDIT', 'FILENAME_STORE_CREDIT','' , 'customers', 'Y', 20);
}
}
Doesn't seem to have had any effect, though. Did I use a wrong option or name, or is that not the problem anyway?
Re: Store credit and reward point module
open \YOUR_ADMIN_NAME\includes\extra_datafiles\store_credit_filenames.php
add:
PHP Code:
define('BOX_CUSTOMERS_CREDIT', 'Customers Credit');
then in ADMIN > TOOLS > INSTALL SQL PATCHES
copy/paste the following:
PHP Code:
# Register the configuration page for Admin Access Control
INSERT IGNORE INTO admin_pages (page_key,language_key,main_page,page_params,menu_key,display_on_menu,sort_order) VALUES ('configCustomerCreditRewards','BOX_CUSTOMERS_CREDIT','FILENAME_STORE_CREDIT',CONCAT('gID=',@configuration_group_id),'customers','Y',@configuration_group_id);
BACKUP, BACKUP, BACKUP!
Re: Store credit and reward point module
Quote:
Originally Posted by
countrycharm
I have a question. Under admin/customers/store_credit when I click on a customer to give them a store credit it want let me. It shows this kind of stuff. Can anybody help me. Thank You
Customers Balance
customers_firstname); ?> customers_lastname); ?>
Store Credit Balance amount==null || is_nan($cInfo->amount)) $cInfo->amount = 0; $amount = number_format($cInfo->amount, 2); $str_balance = "".($amount); echo zen_draw_input_field('customers_balance', $str_balance); ?>
If someone has found a fix for this question, please post it.
I found a work around. Go to the sc_customers table in phpMyAdmin and find your customer's id. Edit the information there and save. It is not ideal, but it does give your customer their Store Credit.
Re: Store credit and reward point module
Note: About question from countrycharm - I did receive that same code on my home test version, but the program worked fine the online website. I use EasyPHP at home.
Re: Store credit and reward point module
Hi,
I loaded the module on 1.3.9h and everything loaded without a hitch. I can add a store credit for a customer via admin but the side box won't show up and the credit doesn't show during checkout either when logged in as the customer. The sidebox entry shows up in the layout area and I've enabled it accordingly but still no show. I've sure I've missed something simple since my cart runs so smoothly I always forget the simple things. Any direction would be most helpful. Thanks.