WordPress – Check if all required fields are filled in WooCommerce before showing popup
I want to verify if the form is required elements of the checkout form are filled before showing up the confirmation popup for Cash on Delivery. // Popup Confirmation function add_cod_confirmation_popup() { if ( ! is_checkout() ) { return; }…