Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohsinworld/6de23aed7bfb6924b5a4c962874169bd to your computer and use it in GitHub Desktop.
Save mohsinworld/6de23aed7bfb6924b5a4c962874169bd to your computer and use it in GitHub Desktop.
function wc_billing_field_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Billing details' :
$translated_text = __( 'Billing Info', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'wc_billing_field_strings', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment