cmsj wrote:Phew, just got "Your VKB FSC Europe order has been received"
For people who are still struggling, when you get to the final page of the checkout, and there are just spinners above the bits where you need to click the terms and conditions and click the Place Order button, open your browser's developer tools, go to the Console tab and paste the following:Code: Select all
var thingyOne = document.getElementsByName('terms');
thingyOne[0].checked = true;
var thingyTwo = document.getElementsByName('woocommerce_checkout_place_order');
Then paste the following line, which will likely immediately return a 502 - keep pasting it until it doesn't immediately return a 502, then wait for like 2 minutes and you should get an email with your order confirmation:Code: Select all
thingyTwo[0].click();
This bloody worked. Thanks a lot mate!