Custom checkbox validation error notice issue in Woocommerce registration
In WooCommerce, I am using the following code to add a custom "privacy" checkbox to the customer registration form: // Addind a checkbox to registration form add_action( 'woocommerce_register_form', 'add_privacy_checkbox_registration' ); function add_privacy_checkbox_registration() { $checkbox_text = sprintf( '%s <a href="%s"><strong>%s</strong></a>', __(…