Reply To: A Sidebar shows up when a message is opened from Inbox


Home Forums Front End PM PRO A Sidebar shows up when a message is opened from Inbox Reply To: A Sidebar shows up when a message is opened from Inbox

#20850
Shamim Hasan
Keymaster

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

add_filter( 'fep_locate_template', function( $template, $template_names ) {
	if ( in_array( 'view-message.php', $template_names ) ) {
		$template = fep_locate_template( 'view-message-legacy.php' );
	}
	return $template;
}, 10, 2 );