Results 1 to 10 of 679

Hybrid View

  1. #1
    Join Date
    Nov 2023
    Location
    Hounslow
    Posts
    131
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    Quote Originally Posted by retched View Post
    I'll look into both of these but no promises as I have a bit of work ahead of me.
    could I hire you (paid service) to help me make a new plugin from scratch for stripe

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

    Default Re: Stripe.com payment integration module

    Sorry for making you wait.
    The previous module had a problem. Stripe ID generated twice for a single order, but I resolved it today and uploaded a new module. Please wait until it is published.

  3. #3
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    934
    Plugin Contributions
    9

    Default Re: Stripe.com payment integration module

    Quote Originally Posted by Gozzandes View Post
    Sorry for making you wait.
    The previous module had a problem. Stripe ID generated twice for a single order, but I resolved it today and uploaded a new module. Please wait until it is published.
    Did you also get to the table error?

  4. #4
    Join Date
    Jan 2010
    Location
    Richmond, Virginia, United States
    Posts
    123
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    Is there any way to change the payment confirmation page layout from tabs to accordion without radio buttons?

  5. #5
    Join Date
    Jul 2017
    Location
    West Midlands, UK
    Posts
    51
    Plugin Contributions
    1

    Default Re: Stripe.com payment integration module

    Quote Originally Posted by jmsnyder23 View Post
    Is there any way to change the payment confirmation page layout from tabs to accordion without radio buttons?
    Hi,
    Yes it is possible to change the layout of the stripe payment options from tabs to accordion (without radio buttons). The stripe documentation details the various layout options available.

    find the following code in checkout.js

    Code:
      const paymentElementOptions = {
        layout: "tabs",
      };
    then change it to the following:

    Code:
      const paymentElementOptions = {
      layout: {
        type: 'accordion',
        defaultCollapsed: true,
        radios: false,
        spacedAccordionItems: true
      }
    }
    The defaultCollapsed option can be set to true or false depending on what look you prefer. It is also possible to change the order of the payment methods (e.g. to show Apple Pay first).
    Richard

  6. #6
    Join Date
    Nov 2023
    Location
    Hounslow
    Posts
    131
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    Quote Originally Posted by richard7315 View Post
    It is also possible to change the order of the payment methods (e.g. to show Apple Pay first).
    Richard
    This is not a option as you have put it - as there is only two options on showing/listing of payment methods with stripe:
    "Manage payment methods from the Dashboard" or "Manually list payment methods" with only the later having the ability of "changing the order of payment methods" to do this you would have to harded code each method you wish to display and the down side of this is that errors can end up being displayed to your customers if stripe would not of displayed this method if the setting was of "Manage payment methods from the Dashboard" so I would say try your best to use the default setting of "Manage payment methods from the Dashboard" as Stripe uses many factors to decide if a method should or should not be displayed which would be too large to code these within a if statement and at lest one factor is fraud detection.
    Last edited by OJ_SIMON; 9 Jul 2024 at 06:39 PM.

  7. #7
    Join Date
    Nov 2023
    Location
    Hounslow
    Posts
    131
    Plugin Contributions
    0

    Default Re: Stripe.com payment integration module

    This is the best option on this point:
    https://docs.stripe.com/payments/pay...ration-options

    Use dynamic payment methods

    [COLOR=var(--sail-color-text)]Stripe dynamically displays the most relevant payment methods to your customers based on the payment method preferences you set in the Dashboard and eligibility factors such as transaction amount, currency, and payment flow. To enable and manage your payment method preferences, go to the Dashboard. Stripe enables certain payment methods for you by default and might enable additional payment methods after notifying you.[/COLOR]
    [COLOR=var(--sail-color-text)]Unless you have to list payment methods manually, we recommend using dynamic payment methods. Dynamic payment methods automatically determines whether to display payment methods according to set rules.[/COLOR]
    [COLOR=var(--sail-color-text)]See Dynamic payment methods to learn more.[/COLOR]
    Manually list payment methods

    [COLOR=var(--sail-color-text)]Listing payment methods manually requires some coding. Every payment method you want your PaymentIntent to accept must be added to payment_method_types. Unless your integration requires that you list payment methods manually, we recommend that you manage payment methods from the Dashboard. Stripe handles the return of eligible payment methods based on factors such as the transaction’s amount, currency, and payment flow.[/COLOR]
    Last edited by OJ_SIMON; 9 Jul 2024 at 06:48 PM.

 

 

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