Page 14 of 18 FirstFirst ... 41213141516 ... LastLast
Results 131 to 140 of 171
  1. #131
    Join Date
    Jun 2008
    Posts
    17
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    does this module work with Paypal IPN? please note that the old mode” Reward Point Full Sui” don’t work with it. I attached what the author said here:

    ##############################_
    The official status of this issue is: The mod works with PayPal- just not with PayPal IPN. Hopefully this will change when ZenCart 2.0 is released.

    but the PayPal IPN mod does this without calling any of the ZenCart notifiers. And as the RP award mod is attached to one of these notifiers, PayPal IPN does not let the RP mod know that there are points which need to be stored. Hence the problem. Contrast to this Google Checkout which runs the same way as PayPal IPN under ZenCart- It makes the correct calls and points are stored.
    .

  2. #132
    Join Date
    Jun 2008
    Posts
    17
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    We want customers to be able to view their current rewards credits and pending credits by checking their own account. I followed the following and added the code to the end of includes/templates/YOUR_TEMPLATE/templates/ tpl_account_history_info_default.php

    But it showed nothing about credits. I guess I need more codes. I am willing to pay for it. Please contact me dancingever###################### thanks.

    ++++++++++++++++++++++++++++++++
    • Display a customer's current store credits/rewards
    In includes/templates/YOUR_TEMPLATE/templates/[select_a_template_file_of_your_choice].php, add the following to an appropriate location in your template file:
    <!-- bof Store Credit Display -->

    <?php

    if (MODULE_ORDER_TOTAL_SC_ORDER_PRODUCT_POINTS == 'true') {

    require_once(DIR_WS_CLASSES . 'store_credit.php');

    $store_credit = new storeCredit();

    echo $store_credit->retrieve_customer_credit($_SESSION['customer_id']);

    }

    ?>

    <!-- eof Store Credit Display -->

  3. #133
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    I think I am also needing someone to install this for me. I am willing to pay. Can someone please contact me at lauriesscraps(at)live(dot)com? Thank you!

  4. #134
    Join Date
    Sep 2009
    Posts
    254
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    I think I got it all installed with just a few things that I think I can fix with help..... so I won't need someone to install.

    Quote Originally Posted by numinix View Post
    Apologies, the documentation has been corrected.
    I am having the same problems. All the documentation says is this:

    Find (around line 70)
    if ($credit_covers) {
    Replace With
    // BEGIN REWARDS POINTS

    // if credit does not cover order total or isn't selected
    if ($_SESSION['credit_covers'] != true) {
    // check that a gift voucher isn't being used that is larger than the order
    if ($_SESSION['cot_gv'] < $order->info['total']) {
    $credit_covers = false;
    }
    }
    // END REWARDS POINTS

    if ($credit_covers) {
    So does this mean that I add all this right above if ($credit_covers)? If I do that my check out page does not show up. Please advise. Thank you.

  5. #135
    Join Date
    Oct 2007
    Posts
    41
    Plugin Contributions
    0

    red flag Re: Store credit and reward point module

    Hi, yellow1912

    Thank you for the mod, I tested and running well.
    Only one Bug I found is:

    I set a 5% discount group in the admin.
    Add a member to this group.
    Issue $500 store credit to this member.
    This member place $200 order and check out.

    Here is a mistake:
    Sub-Total: $200
    Group Discount: -$10
    Store Credit: -$200
    Total : $-10

    The store credit doesn't subtract the Group Discount before apply. Store credit direct apply the Sub-Total, omit the Group Discount.
    If finish checkout, there is only $300 store credit in member's account.
    The correct store credit should be $310, I owe this member $10.
    and the invoice displays Total : $-10.

    This mistake only happen if the group member has enough store credit.
    and only happen on the group member.

    Maybe the mod omit the group pricing.

    Would you please have a look?
    Thank you.

  6. #136
    Join Date
    Oct 2007
    Posts
    41
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    2. I found another bug:

    sometimes, after member applied the store credit to check out, I found in the admin-store credit, Credit Balance-display 0, but when click the member's name - edit, it displays " 7.62939e-07 ", it's strange number.

    Do you know why?
    thanks

  7. #137
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Store credit and reward point module

    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); ?>
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  8. #138
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    red flag Re: Store credit and reward point module

    Hi,

    Installed the latest version but when I go to Customers > Store Credit, I am getting the following error. Please help.
    1054 Unknown column 'pending' in 'field list'
    in:
    [SELECT customers_id, pending FROM zen_sc_customers WHERE customers_id = 3 LIMIT 1]
    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.
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  9. #139
    Join Date
    Jun 2008
    Posts
    17
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    when a customer check out with paypal IPN (not paypal express checkout), will he get store credit automatically? Does anyone has ever make this module work with paypal IPN before?

  10. #140
    Join Date
    Mar 2007
    Location
    Taiwan
    Posts
    241
    Plugin Contributions
    0

    Default Re: Store credit and reward point module

    Quote Originally Posted by silkhouse View Post
    when a customer check out with paypal IPN (not paypal express checkout), will he get store credit automatically? Does anyone has ever make this module work with paypal IPN before?
    I use it with PayPal IPN without any problems. The customer has the choice of using his available credit before the total is finalized, so the store credit module should be compatible with any payment system.

 

 
Page 14 of 18 FirstFirst ... 41213141516 ... LastLast

Similar Threads

  1. v150 Adding a reward point module/add-on
    By dawneprochilo in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 10 Nov 2013, 05:16 PM
  2. Point Reward Setup - Redeem and Account
    By bhizzy in forum Managing Customers and Orders
    Replies: 0
    Last Post: 1 Apr 2010, 10:35 PM
  3. Replies: 0
    Last Post: 11 Mar 2010, 04:39 AM
  4. bug reported in reward point module
    By smart_pro in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 26 Mar 2009, 10:57 AM
  5. Error after installing reward point module
    By trisha33 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 15 Feb 2009, 11:27 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR