Plugin Author
Nitesh
(@nitesh_singh)
Hi @tuffer21,
Thank you for sharing your site link — we checked the browser console on your auction page and found the root cause of the issue.
There is a JavaScript error showing in the console:
POST https://grwalleyeshootout.com/wp-admin/admin-ajax.php 400 (Bad Request)
This means that when a bid is placed, the AJAX request to process the bid is being sent correctly but your server is returning a 400 Bad Request error and rejecting it. Because the AJAX call fails, the overlay stays on screen and the page does not update — which is exactly the symptom you are describing.
This is not a plugin issue — it is most likely being caused by one of the following:
- A security plugin (e.g. Wordfence, iThemes Security, or similar) blocking the AJAX request
- A Web Application Firewall (WAF) at your hosting level blocking POST requests to wp-admin/admin-ajax.php
- A nonce verification failure — where the security token sent with the bid request is being rejected by the server
To resolve this, we would suggest the following steps:
- If you have a security plugin installed, temporarily disable it and test the bid again — does the overlay clear correctly?
- Contact your hosting provider and ask them to check if their firewall or WAF is blocking POST requests to wp-admin/admin-ajax.php and ask them to whitelist it
- Check your server error logs for any entries around the time of the bid attempt — this may give more detail on why the server is rejecting the request
Please let us know what you find and we will help you from there.
Regards,
Ultimate Auction Support Team
Thanks. The issue went away, possibly from site/plugin updates – not sure exactly what fixed it.
Appreciate your response. Just never got to the point where I had to try those steps.