Forum Replies Created

Viewing 5 replies - 16 through 20 (of 20 total)
  • Hello @grnmtnvtnek ,

    Thank you for reaching out.

    First, I’m really sorry to hear about your experience, especially with the delay in getting through to support and the impact this is having on your sales. I completely understand how urgent this situation is, and I appreciate you sharing all the details you’ve already tested.

    From what you’ve described, there are two separate concerns we should address:

    1. Store not recognized as connected (blocking support access)
    2. Checkout/payment issues (PayPal errors and zero completed sales)

    Let’s go through a few quick checks to narrow this down. To help isolate the cause, could you work through the following on a staging/test environment:

    1. Fix WooCommerce.com connection issue

    Even if your store appears under subscriptions, it may not be properly connected at the site level.

    Please try the following:

    After reconnecting, try submitting a support request again.

    2. Investigate PayPal / checkout issue

    Since you’re still getting traffic but no sales, this strongly points to a checkout or payment failure.

    Let’s gather more precise details:

    A. Get PayPal error logs

    • Go to WooCommerce → Status → Logs
    • Select the latest PayPal-related log file
    • Copy the most recent error entries

    Please paste the logs to: https://pastebin.com and share the link with us here.
    This will allow us to review the exact error without exposing sensitive data.

    B. Check WooCommerce system status

    • Go to WooCommerce → Status
    • Click “Get system report”
    • Copy the report and paste it to https://pastebin.com
    • Share the link with us

    C. Check for conflicts
    Temporarily:

    • Disable all other plugins
    • Switch to a default WordPress theme (like Twenty Twenty-Four)
      Then test the checkout. If it works, reactivate things one by one to find the cause.

    Once we have the PayPal logs and system report, we’ll be able to pinpoint the issue much faster and guide you toward a fix.

    If the connection issue still prevents you from opening a ticket after this, let us know — we’ll make sure this gets properly escalated for you.

    We’re here to help you get your store back to normal as quickly as possible.

    Best regards,
    Mina Emad

    Hello @alanintertec ,

    Thank you very much for the detailed report — we really appreciate the effort you’ve put into testing and confirming this on multiple sites.

    We’ve tested Forminator v1.52.2 on our end and were not able to reproduce the issue. Forms are submitting normally, so this appears to be related to a site-specific setup rather than a general regression.

    The 404 error for the jQuery UI image file in your console is worth noting, but it’s unlikely to be the direct cause of form submission failure on its own — that’s a missing asset, not a script error. The actual validation error is likely coming from somewhere else.

    That said, your findings are consistent and worth investigating properly.

    Let’s go through a few quick checks to narrow this down. To help isolate the cause, could you work through the following on a staging/test environment:

    1. Reinstall Forminator
      Delete and reinstall version 1.52.2 to ensure all plugin files are complete and not corrupted.
    2. Clear cache
      Clear your browser cache and any caching plugin or server/CDN cache, then test again.
    3. Check for conflicts
      Temporarily:
      • Disable all other plugins
      • Switch to a default WordPress theme (like Twenty Twenty-Four)
        Then test the form. If it works, reactivate things one by one to find the cause.
    4. Try another browser/device
      This helps rule out any browser-related issues.
    5. Check your browser console more carefully
      Beyond the 404, are there any JavaScript errors in red? If so, please paste them here.

    If the problem persists, we’d like to take a closer look at your form setup. Please share an export of the form with us:

    To export your form:

    • Go to Forminator → Forms in your dashboard
    • Click the gear icon next to the form
    • Select Export
    • Copy the export code
    • Paste it at https://pastebin.com
    • Share the link with us here

    Note: This export does not include any submitted data — your entries remain safe on your site.

    Once we have that, we’ll investigate further and help you get this resolved.

    Best regards,
    Mina Emad

    Hello,

    Thank you for reaching out.

    The funnel/filter icon should normally be visible next to the number of results. In some cases, however, it may be hidden if the browser window is not wide enough or if the page is zoomed in, which can affect the layout of the interface.

    We recommend adjusting your browser zoom level to reveal the missing controls.

    You can do this using:

    • Windows / Linux: Ctrl + -
    • Mac: Cmd + -

    Alternatively, you may also try maximizing your browser window or adjusting the zoom level via your browser’s settings menu.

    Once the screen has more available space, the funnel/filter icon should become visible again.

    Please let us know if this resolves the issue or if you need any further assistance — we’ll be happy to help.

    Best regards,
    Mina Emad

    Hello,

    Thank you for reaching out, and for bringing this to our attention — I understand how disruptive it can be when files are attached despite the setting being configured otherwise. Unexpected file attachments truly can cause problems, especially with larger file sizes.

    We’ve tested this on our end, and when the Attachments option is set to None, the files are not included as attachments. Based on that, what you’re experiencing is not the expected behavior and is likely caused by something overriding the default handling. To help isolate the issue, could you please try the following:

    1. Double-check the notification settings
      • Go to Forminator → Forms → Edit → Email Notifications
      • Confirm that the correct notification has Attachments set to None (see the attached image at https://ibb.co/jvV0QH0x)
      • Make sure the respective parameter of the “File Upload” field is added in the Email Template to attach the file’s link
    2. Test with only one notification enabled
      • Temporarily disable other email notifications to ensure another notification isn’t sending the attachments
    3. Check for conflicts
      • Temporarily switch to a default theme (e.g., Twenty Twenty-*)
      • Deactivate other plugins except Forminator
      • Then run a test submission
    4. SMTP / email service
      • If you’re using an SMTP plugin or external email service, try sending a test with it temporarily disabled, as some services may alter how attachments are handled

    If the issue still persists after these steps, please share the following so we can investigate further:

    • A screenshot of your Email Notification settings
    • Confirmation of whether the attachment appears in all notifications or just a specific one
    • Your “Forminator Forms” plugin version and WordPress version

    We’ll be happy to take a deeper look and get this resolved for you as quickly as possible.

    Best regards,
    Mina Emad

    Hi there, thanks for reaching out and for the detailed description — that really helps!

    Good catch — your account settings look correct, so this one isn’t caused by your configuration. What you’re seeing is WooCommerce’s guest order email verification feature, which was added in WooCommerce 7.7. It’s separate from the account creation settings entirely, which is why unchecking those options didn’t affect it.The login prompt and the email verification form are both output on the thank you page via the woocommerce_before_thankyou hook. Since you want to keep the email verification but remove the login message, the cleanest fix is to filter the output text directly.Add this to your theme’s functions.php or via a plugin like Code Snippets:

    add_filter( 'woocommerce_thankyou_order_received_text', function( $text, $order ) {
    if ( $order && ! $order->get_user_id() ) {
    return 'Your order has been received. A confirmation will be sent to your email address.';
    }
    return $text;
    }, 10, 2 );

    This replaces the full message (including the login prompt) for guest orders only, so logged-in customers are unaffected.If the login link persists below that text as a separate element, you can also suppress it with a targeted CSS rule in Appearance → Customize → Additional CSS

    .woocommerce-order .woocommerce-info a[href*="login"] {
    display: none;
    }

    What version of WooCommerce are you running? That’ll help confirm if there’s a more direct hook available for your setup.

    Let me know how it goes — happy to help further if anything doesn’t behave as expected!

Viewing 5 replies - 16 through 20 (of 20 total)