Change input field labels and placeholders
Add the following code to your child theme’s functions.php file and customize it to fit your needs.
add_filter('woocommerce_checkout_fields', 'custom_override_checkout_fields');
function custom_override_checkout_fields($fields)
{
unset($fields);
$fields = 'Business Name';
$fields = 'Business Name';
$fields = 'First Name';
$fields = 'First Name';
$fields = 'Last Name';
$fields = 'Company Name';
$fields = 'Last Name';
$fields = 'Email Address ';
$fields = ...
Recent Comments