Reply To: Problems with Additional Form Fields


Home Forums Front End PM PRO Problems with Additional Form Fields Reply To: Problems with Additional Form Fields

#26955
Shamim Hasan
Keymaster

You can use following code, it will redirect user to messagebox page after message sent.

add_action( 'fep_posted_action_after', function( $action ){
	if ( 'newmessage' == $action && count( fep_success()->get_error_messages() ) > 0 ) {
		$_POST['fep_redirect'] = fep_query_url( 'messagebox' );
	}
});