02/19/2013 at 8:07 pm
#251870
Keymaster
You can drop this it of code in the theme’s functions.php file to rename the individual entry type:
function trigg_gettext( $translated_text , $text , $domain ) {
if ( $domain == 'connections' && $translated_text == 'Individual' ) {
$translated_text = 'Org 2';
}
return $translated_text;
}
add_filter( 'gettext', 'trigg_gettext', 20, 3 );