Home › Forums › Front End PM PRO › Can't reply to a message after it is deleted by other user. › Reply To: Can't reply to a message after it is deleted by other user.
May 2, 2019 at 8:20 pm
#24101
Shamim Hasan
Keymaster
Please add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_message_table_bulk_actions', function( $actions ){
unset( $actions['delete'] );
return $actions;
});
This will remove delete option.
If you want your user can send reply even that is deleted also that is possible but need to be custom coded.