Skip to content

Instantly share code, notes, and snippets.

@apisklov
Forked from cryptexvinci/woo_rename_checkout.php
Created March 28, 2018 08:27
Show Gist options
  • Save apisklov/51ce501edab52cd315709274645e8e94 to your computer and use it in GitHub Desktop.
Save apisklov/51ce501edab52cd315709274645e8e94 to your computer and use it in GitHub Desktop.
Rename WooCommerce checkout field label & placeholder
// WooCommerce Rename Checkout Fields
add_filter( 'woocommerce_checkout_fields' , 'custom_rename_wc_checkout_fields' );
// Change placeholder and label text
function custom_rename_wc_checkout_fields( $fields ) {
$fields['billing']['billing_first_name']['placeholder'] = 'Wonka';
$fields['billing']['billing_first_name']['label'] = 'Your Awesome First Name';
return $fields;
}
@Josh949
Copy link

Josh949 commented Jun 22, 2018

For some odd reason, this code only works on first_name and last_name for me. This code is not working for "city, postcode, state, address_1, or address_2". Any thoughts on what might be causing this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment