Hi Shamim,
I have an issue regarding the ‘fep-button- fep-message-toggle-all’ css after hiding the left columm on a view message page.
First, I deactivated the Avatars on my site.
Then the view message page looks like on the “test1” attached picture. Not so nice.
So I prefer to get rid of the left columm which doesn’t look nice.
To achieve this I added some code in my functions.php file, code that I found on this forum:
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 );
But this code is also destroying the ‘fep-button-fep-message-toggle-all’ which has now no border and colors anymore, css is gone on that button. See what it looks like ton “test2” attached picture.
Question: How can I hide the left columm but keep the button on the right to toggle all messages as it was before?
Thanks for your help
Olivier
Attachments:
You must be
logged in to view attached files.