Home › Forums › Front End PM PRO › Can we rename message box to inbox › Reply To: Can we rename message box to inbox
February 26, 2018 at 7:49 pm
#11735
Shamim Hasan
Keymaster
add following code in your theme’s (child theme’s if any) functions.php
add_filter('fep_menu_buttons', function( $menu ){
$menu['message_box']['title'] = sprintf(__('Inbox%s', 'front-end-pm'), fep_get_new_message_button() );
return $menu;
});