04/27/2013 at 4:28 pm
#258035
Participant
@ Steven Zahm
I couldn’t get the plugin to work so I tried some code and popped it at the bottoms of my functions.php file but still not working. Maybe I got something in the code wrong?
function josh_gettext( $translated_text , $text , $domain ) {
if ( $domain == 'connections_form' && $translated_text == 'Department' ) {
$translated_text = 'Position';
}
return $translated_text;
}
add_filter( 'gettext', 'josh_gettext', 20, 3 );
Cheers,
Josh
