Home › Forums › Front End PM PRO › Change front-end text › Reply To: Change front-end text
April 2, 2019 at 2:45 am
#22945
shamim
Keymaster
You can use gettext
filter.
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 && 'Add more file' == $text ){
$translated_text = 'add more files';
}
return $translated_text;
}, 20, 3 );