Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deferred intent - Display a detailed error message to customers on card declines #2927

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,7 @@ private function process_payment_intent_for_order( WC_Order $order, array $payme
throw new WC_Stripe_Exception(
// phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r
print_r( $payment_intent, true ),
__( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' )
$payment_intent->error->message
);
}

Expand Down
Loading