Page 16 of 16 FirstFirst ... 6141516
Results 151 to 159 of 159
  1. #151
    Join Date
    Feb 2012
    Posts
    58
    Plugin Contributions
    0

    Default 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?

  2. #152
    Join Date
    Aug 2012
    Posts
    7
    Plugin Contributions
    0

    Default 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?

  3. #153
    Join Date
    Jun 2012
    Posts
    12
    Plugin Contributions
    0

    Default 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?
    Last edited by dairymom; 31 Dec 2012 at 06:51 AM.

  4. #154
    Join Date
    Jul 2009
    Posts
    39
    Plugin Contributions
    0

    Default 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?

  5. #155
    Join Date
    Feb 2010
    Posts
    26
    Plugin Contributions
    0

    Default 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?

  6. #156
    Join Date
    Apr 2013
    Posts
    1
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    Quote Originally Posted by MelodyW View Post
    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?
    Last edited by devlocke; 3 Apr 2013 at 11:57 PM.

  7. #157
    Join Date
    Feb 2010
    Location
    New York
    Posts
    967
    Plugin Contributions
    3

    Default 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_orderVALUES ('configCustomerCreditRewards','BOX_CUSTOMERS_CREDIT','FILENAME_STORE_CREDIT',CONCAT('gID=',@configuration_group_id),'customers','Y',@configuration_group_id); 
    BACKUP, BACKUP, BACKUP!

  8. #158
    Join Date
    Nov 2006
    Posts
    33
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    Quote Originally Posted by countrycharm View Post
    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.
    Katrina Robb
    KatalinaKlark.com

  9. #159
    Join Date
    Nov 2006
    Posts
    33
    Plugin Contributions
    0

    Default 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.
    Katrina Robb
    KatalinaKlark.com

 

 
Page 16 of 16 FirstFirst ... 6141516

Similar Threads

  1. First Full Release of Reward Points module available. [Support Thread]
    By hem in forum All Other Contributions/Addons
    Replies: 38
    Last Post: 4 Apr 2013, 02:34 PM
  2. Reward Point Mod beta now available
    By hem in forum All Other Contributions/Addons
    Replies: 322
    Last Post: 8 Jun 2011, 10:41 PM
  3. Store Credit Module
    By funtimesx in forum Addon Payment Modules
    Replies: 139
    Last Post: 15 Nov 2010, 12:41 PM
  4. Experimental Reward Points Module
    By precursor999 in forum Addon Payment Modules
    Replies: 7
    Last Post: 2 Apr 2007, 09:32 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •