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
January 19, 2019 at 3:07 am
#20850
shamim
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 );