Stripe Payment

This topic contains 2 replies, has 3 voices, and was last updated by  Giri 7 years, 6 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #292140

    Lars Jensen
    Expired Member
    Post count: 30

    Hi GD Team.

    Thanks for you help so fare. You have been great.

    Now… regarding stripe payments.

    In Denmark… not many people know what Stripe is. So I am a bit worried about the checkout via Stripe…

    Now the popup from stripe is ok… however the “window” before the popup where you “tic” the Stripe box to pay via stripe… that’s the thing that worries me.

    Is it possible to add som info there?
    E.g. telling the customers that this is where they go to pay with creditcard ect.
    E.g. telling the customers that this is a secure payment gateway.

    I just think the info the customer is receiving in that window is very… limited… and to the insecure customer… that might be a turn off.

    Best regards people..

    #292350

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    the only option you have now, is to add a short description after the payment gateway name.

    Go to GD >> Prices and Payments >> Payments >> Stripe Settings and add some text in the Payment Method field after the word Stripe.

    It will appear in the check out page.

    Thanks

    #292694

    Giri
    Expired Member
    Post count: 3155

    Hi Lars,

    Try this code in your child theme functions.php file

    
    
    
    function geodir_payment_stripe_method_info( $payment_method ) {
        if ($payment_method == 'stripe') {
            echo "stripe is a payment gateway";
        }
    }
    add_action( 'geodir_payment_method_fields', 'geodir_payment_stripe_method_info' );

    Let me know how that goes.

    Thanks

Viewing 3 posts - 1 through 3 (of 3 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket