Back to Community

Troubleshooting Forminator Payment Issues: Why Payments Succeed But Forms Don't Submit

17 threads Sep 24, 2025

Content

One of the most frustrating issues Forminator users encounter is when a payment processes successfully through Stripe or PayPal, but the form submission itself fails. The payment goes through, but you don't receive the form data, notifications, or any record of the submission. This problem is particularly common with specific payment methods like Bancontact, as seen in our sample threads.

Why Does This Happen?

This disconnect occurs because the form submission process and the payment process are two separate steps that need to handshake correctly. When a user clicks "submit," Forminator first validates the form data. If validation passes, it initiates the payment process. The form submission is only fully completed after receiving a successful confirmation from the payment gateway (like Stripe). If this confirmation is not received or is misinterpreted, the payment may process, but the form data is never saved or emailed.

Common causes include:

  • Asynchronous Payment Methods: Methods like Bancontact or iDEAL can have a slight delay or different confirmation flow compared to instant credit card payments.
  • Browser Pop-up Blockers: If the payment gateway tries to open a new tab or window for authentication and it's blocked, the confirmation handshake can fail.
  • Conditional Logic Conflicts: If the payment amount is set by conditional logic (e.g., based on a user's selection), a misconfiguration can cause Stripe to receive a value of '0', which fails, halting the entire submission process.
  • JavaScript Errors: Conflicts with other plugins or themes can interrupt the JavaScript that handles the payment confirmation callback.

How to Troubleshoot and Fix the Issue

1. Check the Payment Method Configuration

First, ensure the specific payment method (e.g., Bancontact) is properly enabled and configured within your Stripe account settings, not just in Forminator. Some payment methods require explicit activation in your Stripe dashboard.

2. Test for Pop-up Blockers

As highlighted in another thread, some payment flows require opening a new window. Instruct users to allow pop-ups for your site. Alternatively, check if your Stripe integration can be configured to use a redirect flow within the same tab instead of a pop-up, which is more reliable across different browsers and devices.

3. Review Conditional Logic for Payment Amounts

If you are using conditional logic to dynamically set the payment amount, double-check your rules. The field containing the final amount must be correctly populated before the form reaches the payment step. A common pitfall in multi-step forms is that the value is not carried over correctly. Test the form thoroughly to ensure the correct, non-zero amount is being passed to Stripe.

4. Enable WordPress Debugging

To uncover hidden PHP or JavaScript errors, enable debugging. Temporarily add the following lines to your wp-config.php file (above the line that says 'That's all, stop editing!').

define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true ); // Logs errors to wp-content/debug.log
define( 'WP_DEBUG_DISPLAY', false ); // Prevents errors from being shown on screen

After reproducing the issue, check the wp-content/debug.log file for any relevant errors that occur during the form submission process.

5. Conflict Test

A plugin or theme conflict is a frequent culprit. To test for this:

  1. Switch your theme to a default WordPress theme like Twenty Twenty-Four.
  2. Deactivate all plugins except Forminator.
  3. Test the payment form again.

If the form works, reactivate your plugins and theme one by one, testing after each, to identify the source of the conflict.

6. Verify Webhook Setup (Stripe)

For Stripe, ensure that the necessary webhook endpoint is correctly set up in your Stripe dashboard to send events back to your site. The webhook URL should be https://yourdomain.com/wp-json/forminator/stripe/webhook. This is crucial for payment methods that have a delayed confirmation.

By methodically working through these steps, you can usually identify and resolve the issue causing successful payments to fail to trigger a complete form submission in Forminator.

Related Support Threads Support