Reply To: How to add a form in the page of a new message. Home › Forums › Front End PM PRO › How to add a form in the page of a new message. › Reply To: How to add a form in the page of a new message. July 29, 2020 at 6:45 pm #39819 Shamim HasanKeymaster Use like following add_action( 'fep_before_form_fields', function( $where ){ if( in_array( $where, [ 'newmessage', 'reply' ] ) ) { echo "This is your sentence"; } });