Hi @jchrusty,
The popup message is required in order to prevent users from leaving the checkout page when there are unsaved changes to field values.
One of the main reasons users might abandon their purchase is because of lost data during the checkout process.
This can happen if they accidentally hit the back button, do a swipe gesture on the phone or laptops with some browsers that interpret it as a wish to go back in the browser history, or if they accidentally close the browser tab/window.
If you really need to, after updating the plugin to the next version (1.5.2), you could use the code snippet below to disable this feature. You can also use the beta version 1.5.2-beta-2 from the link below:
https://t2449427.p.clickup-attachments.com/t2449427/e33ff31d-50cd-4df5-a23a-399998fc46e6/fluid-checkout-1.5.2-beta-2.zip
/**
* Disable the update before leaving the checkout page when there are unsaved changes.
*/
function fluidcheckout_disable_updated_before_unload( $should_update_before_unload ) {
return 'no';
}
add_filter( 'fc_checkout_update_before_unload', 'fluidcheckout_disable_updated_before_unload', 10 );
If you are unsure about how to add the code snippet, check our article:
How to safely add code snippets to your WooCommerce website
I’ll let you know once the update with this fix is available.
Best,
Diego