Skip to content

Instantly share code, notes, and snippets.

@cartimize
Created October 7, 2021 15:40
Show Gist options
  • Save cartimize/7909ab79f976b9daa96be5a057b9e531 to your computer and use it in GitHub Desktop.
Save cartimize/7909ab79f976b9daa96be5a057b9e531 to your computer and use it in GitHub Desktop.
A filter function to change full name label
<?php
add_filter( 'cartimize_full_name_text_label', 'custom_cartimize_full_name_text_label' , 1000, 1 );
function custom_cartimize_full_name_text_label($text){
return 'First name';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment