Reply To: fep_shortcode_message_to with field “to” hidden.


Home Forums Front End PM PRO fep_shortcode_message_to with field “to” hidden. Reply To: fep_shortcode_message_to with field “to” hidden.

#26812
Shamim Hasan
Keymaster

Add following code in your theme’s (child theme’s if you are using) functions.php

add_filter( 'fep_filter_tokeninput_localize', function( $args ){
	if ( isset( $_GET['fepaction'] ) && 'newmessage' == $_GET['fepaction'] && ! empty( $args['prePopulate'] ) && is_array( $args['prePopulate'] ) ) {
		$args['tokenLimit'] = count( $args['prePopulate'] );
		foreach ( $args['prePopulate'] as &$value ) {
			$value['readonly'] = true;
		}
	}
	return $args;
});