Log in Register Log In Your Account Remember me Forgot your password? Log in ORLogin with OTP Don't have an account? Signup Register An Account // 4. Make default WooCommerce phone field required and add placeholder add_filter('woocommerce_billing_fields', 'pq_customize_phone_field'); function pq_customize_phone_field($fields) { if (is_account_page()) { $fields['billing_phone']['required'] = true; $fields['billing_phone']['placeholder'] = 'Enter your phone number'; } return $fields; } // 5. Remove any previously added custom phone fields (if any) remove_action('woocommerce_register_form_start', 'pq_add_phone_field'); First Name * Last Name * Phone *Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy. Register Back to login