Reply To: Toggle Messages


Home Forums Front End PM PRO Toggle Messages Reply To: Toggle Messages

#31298
Shamim Hasan
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 );