Home › Forums › Front End PM PRO › Toggle Messages › Reply To: Toggle Messages
November 18, 2019 at 11:30 pm
#31298
shamim
Keymaster
Sorry for late reply.
You can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'gettext', function( $translated_text, $text, $domain ){
if ( 'front-end-pm' == $domain && 'Toggle Messages' == $text ){
$translated_text = 'Expand';
}
return $translated_text;
}, 20, 3 );