Reply To: Suggestion to move error/message success box to top of screen


Home Forums Front End PM PRO Suggestion to move error/message success box to top of screen Reply To: Suggestion to move error/message success box to top of screen

#15484
Shamim Hasan
Keymaster

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

add_action( 'fep_display_before_content', function(){
	if( 'viewmessage' == $_GET['fepaction'] ){
		echo fep_info_output();
	}
});

It will show error/success message top of the messages also.