Reply To: How to link the participants name to their profile?


Home Forums Front End PM PRO How to link the participants name to their profile? Reply To: How to link the participants name to their profile?

#14951
Shamim Hasan
Keymaster

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

add_filter( 'fep_filter_before_email_send', function( $content ){
	$content['subject'] = strip_tags( $content['subject'] );
	return $content;
}, 99);