Results 1 to 10 of 679

Hybrid View

  1. #1
    Join Date
    May 2010
    Location
    Texas
    Posts
    508
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by Gozzandes View Post
    Check you template select.
    and following codes are for ver zen cart 157c template_default
    I just replaced the contents of tpl_checkout_confirmation_default.php with that which you posted, and the results were the same. PayPal good, Stripe Sub total, tax, total, duplicated

    I'm using the Responsive Classic template.

    Same result as using the 1.5.8 version. What was interesting about the 1.5.8 version was it seemed to function without throwing PHP errors. Would you expect the 1.5.8 version of tpl_checkout_confirmation_default.php to operate correctly on version 1.5.7c?

  2. #2
    Join Date
    May 2010
    Location
    Texas
    Posts
    508
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    I just did a file compare of the contents you just posted against the original file in Stripe_module_zc157d. They are identical

    So I'm now confused.

  3. #3
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    132
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    I just did a file compare of the contents you just posted against the original file in Stripe_module_zc157d. They are identical

    So I'm now confused.
    Download from github.com.
    The moule for zen cart 1.5.7c is included.
    zencart-stripe-module_217
    Be careful "mysql_upgrade_to_2.1.7" should be install before over writing the files at Admin=>Tools=>Install SQL patches.

    Niho Yokane corporation

  4. #4
    Join Date
    May 2010
    Location
    Texas
    Posts
    508
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    I updated the files from github. It was not until I replaced the \includes\modules\payment\stripe.php, that both PayPal and Stripe now show the final checkout page correctly.
    I'll need to do more testing to be sure.

    However, in stripe test mode, at the stripe dashboard, orders were coming in $5 more than they should have
    Checking the "low order fee" module, the low order fee was set to false, but the fee amount was set to $5. Setting this to $0 solved the additional $5 at the stripe dashboard

    Click image for larger version. 

Name:	low order fee.jpg 
Views:	92 
Size:	22.5 KB 
ID:	20829

  5. #5
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    132
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    I updated the files from github. It was not until I replaced the \includes\modules\payment\stripe.php, that both PayPal and Stripe now show the final checkout page correctly.
    I'll need to do more testing to be sure.

    However, in stripe test mode, at the stripe dashboard, orders were coming in $5 more than they should have
    Checking the "low order fee" module, the low order fee was set to false, but the fee amount was set to $5. Setting this to $0 solved the additional $5 at the stripe dashboard

    Click image for larger version. 

Name:	low order fee.jpg 
Views:	92 
Size:	22.5 KB 
ID:	20829
    Thanks!!
    Change the following code
    www\includes\modules\payment\stripe.php line 150
    from
    PHP Code:
         if (MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS == 'true' && MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER >= $order->info['total']) { 
    to
    PHP Code:
         if (MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE == 'true' && MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER >= $order->info['total']) { 

  6. #6
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    132
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED


  7. #7
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,915
    Plugin Contributions
    13

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by Gozzandes View Post
    is there any way you can spend a bit of time learning github?

    posting a zip file with all of the files within it is not the best way to make use of a collaborative tool such as github.

    all of the files should be up on a repo, and then you can do releases where git will automatically create a zip file for you.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  8. #8
    Join Date
    May 2010
    Location
    Texas
    Posts
    508
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by Gozzandes View Post
    Thanks!!
    Change the following code
    www\includes\modules\payment\stripe.php line 150
    from
    PHP Code:
         if (MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS == 'true' && MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER >= $order->info['total']) { 
    to
    PHP Code:
         if (MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE == 'true' && MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER >= $order->info['total']) { 
    When I rolled all this to the live site today, the low order fee issue got me again. I had to set the fee to 0.

    It looks like the above did not make it into 2.1.9


    I can confirm that the "TEXT_PAYMENT_STRIPE_PAYMENTSUCCEEDED" message was resolved with the SQL patch

  9. #9
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    132
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    When I rolled all this to the live site today, the low order fee issue got me again. I had to set the fee to 0.

    It looks like the above did not make it into 2.1.9


    I can confirm that the "TEXT_PAYMENT_STRIPE_PAYMENTSUCCEEDED" message was resolved with the SQL patch
    MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE is Allow Low Order Fee.

    Translate the code into English.
    PHP Code:
         if (MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE == 'true' && MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER >= $order->info['total']) { 
    If you set "Allow Low Order Fee" to true and customer's order under ## dollar.
    I will add ## dollar to total as a low order fee.

    If you do not want to add low order fee, you should set "Allow Low Order Fee" to false.

 

 

Similar Threads

  1. pay2check.com payment module?
    By sunrise99 in forum Addon Payment Modules
    Replies: 0
    Last Post: 1 Nov 2011, 03:55 AM
  2. klikandpay.com payment module
    By rulest in forum Addon Payment Modules
    Replies: 0
    Last Post: 24 Sep 2010, 06:06 PM
  3. AlertPay Payment Module Integration Help Please!
    By etorf9751 in forum Addon Payment Modules
    Replies: 8
    Last Post: 16 Aug 2010, 05:06 PM

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