Reply To: Use user name not full names in multi recipient list


Home Forums Front End PM PRO Use user name not full names in multi recipient list Reply To: Use user name not full names in multi recipient list

#4632
Shamim Hasan
Keymaster

if your php version 5.3+ add following code in you theme’s (child theme’s if any) functions.php


add_filter( 'fep_filter_display_participants', function(){
	$participants = get_post_meta( get_the_ID(), '_participants' );
	return implode( ', ', $participants );
	
});

this will show user id (as you suggested) in participants list.