Page 45 of 58 FirstFirst ... 35434445464755 ... LastLast
Results 441 to 450 of 574
  1. #441
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,842
    Plugin Contributions
    11

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    i would suggest learning git on the terminal mode.

    the limitation you are talking about is for the graphical interface.

    https://docs.github.com/en/get-start...git/set-up-git

    https://stackoverflow.com/questions/...once-in-github
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

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

    Default Re: Stripe payment module

    Have been using PayPal for years...only. PayPal claims to charge 2.9% +.30, but its always about 4%. Then there are the customers that email and plead for something other than PayPal. We tried Zelle for a while, but too much hassle always dealing with customers that selected it, but did not know what to do next. PayPal's dispute resolution, never sides with the seller, unless its painfully obvious.
    A customer can send an empty box back as part of a return, and PayPal will side with the customer. A customer could smash the product with a hammer and return the bits, and PayPal would side with the customer

    Now with Stripe, we have several payment options, and I have been checking, it is 2.9% + .30. Damn, we should have switched long ago.
    One warning, not all available payment options are 2.9%. Make sure you know what the fees are before enabling a payment option.
    Stirpe has AI help, which is faster than a real person. Just ask the AI what the fees are for a particular payment option.

    No disputes yet....we will see how that goes

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

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by carlwhat View Post
    i would suggest learning git on the terminal mode.

    the limitation you are talking about is for the graphical interface.

    https://docs.github.com/en/get-start...git/set-up-git

    https://stackoverflow.com/questions/...once-in-github
    I've made available for download.
    https://github.com/Gozzandes/stripe_modules_218

    Nihon Yokane corporation

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

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    We had a customer place an order with Visa. It is listed as "Succeeded" on Stripe, but no order in Zen. A few minutes later, the customer altered his order and then used Link to Pay, which was also "Succeeded". This 2nd order was received in Zen. The customer brought this to our attention claiming he was double charged....
    How can a transaction succeed at Stripe but not show up in Zen?

    Looking into it further, the Visa is listed as originating from South Africa. The Link transaction, is in USD and was shipped to a USA address.
    I hesitate to refund the Visa order as it feels like it could be a Scam of some sort...some loophole in Stripe.
    Last edited by split63; 27 Dec 2024 at 04:42 PM.

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

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    We had a customer place an order with Visa. It is listed as "Succeeded" on Stripe, but no order in Zen. A few minutes later, the customer altered his order and then used Link to Pay, which was also "Succeeded". This 2nd order was received in Zen. The customer brought this to our attention claiming he was double charged....
    How can a transaction succeed at Stripe but not show up in Zen?

    Looking into it further, the Visa is listed as originating from South Africa. The Link transaction, is in USD and was shipped to a USA address.
    I hesitate to refund the Visa order as it feels like it could be a Scam of some sort...some loophole in Stripe.
    Payment succeeded information is sent from Stripe server after clicking "Confirmation" button.
    and
    includes/checkout.js receive the information and show payment succeeded message and click order confirmation page button.
    line 48-50 and 69-71
    It may be better to click first the order confirmation page button.
    from
    Code:
          document.getElementById('checkoutConfirmDefaultHeading').textContent = PaymentSuccess;
          showMessage(PaymentSuccess);
          document.getElementById("btn_submit").click();
    to
    Code:
          document.getElementById("btn_submit").click();
          document.getElementById('checkoutConfirmDefaultHeading').textContent = PaymentSuccess;
          showMessage(PaymentSuccess);

  6. #446
    Join Date
    May 2010
    Location
    Texas
    Posts
    491
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    When I mentioned "It is listed as "Succeeded" on Stripe", I mean the Stripe website dashboard, not what the customer sees at checkout, though that may be an issue also.

  7. #447
    Join Date
    May 2010
    Location
    Texas
    Posts
    491
    Plugin Contributions
    0

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    I just received another duplicate on Stripe. According to the Stripe Dashboard, two exactly the same orders received 1 minute apart. Again, only one shows up in Zen, and its again the 2nd order shown on Stripe. So the 1st order shown on Stripe is the phantom....how can we stop this from happening?

  8. #448
    Join Date
    Jul 2021
    Location
    Fukuoka Japan
    Posts
    125
    Plugin Contributions
    2

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    Quote Originally Posted by split63 View Post
    I just received another duplicate on Stripe. According to the Stripe Dashboard, two exactly the same orders received 1 minute apart. Again, only one shows up in Zen, and its again the 2nd order shown on Stripe. So the 1st order shown on Stripe is the phantom....how can we stop this from happening?
    I guess it may be SSL problem.i highly recommend entire site SSL.
    Could you check it?

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

    Default Re: Stripe payment module - PAYPAL IMPAIRED

    The session may be disconnected after clicking confirmation button. and the customers are forced to log of from thier checkoutpage.
    As a resut the last confirmation page is not displayed. and sometimes displayed.

  10. #450
    Join Date
    May 2010
    Location
    Texas
    Posts
    491
    Plugin Contributions
    0

    Default Re: Stripe payment module -Duplicate orders

    The entire site is SSL. Please note that I have not implemented the potential change:

    PHP Code:
          document.getElementById("btn_submit").click();
          
    document.getElementById('checkoutConfirmDefaultHeading').textContent PaymentSuccess;
          
    showMessage(PaymentSuccess); 
    Waiting to hear that this change is confirmed and will solve the issue

    Wouldn't it require an active session to move from checkout page 1 to 2 to 3?
    Last edited by split63; 29 Dec 2024 at 11:21 AM.

 

 
Page 45 of 58 FirstFirst ... 35434445464755 ... LastLast

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

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