79584636

Date: 2025-04-21 12:34:21
Score: 1
Natty:
Report link

If you want to rename "Email address" to something else (e.g., "Your Email"):

add_filter( 'woocommerce_checkout_fields', 'custom_email_label_checkout' );
function custom_email_label_checkout( $fields ) {
    $fields['billing']['billing_email']['label'] = 'Your Email';
    return $fields;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: wishinfo