Reply To: Can't reply to a message after it is deleted by other user.


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.

#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.