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

This topic is: Resolved
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #20768
    M G
    Participant

    Hi,

    When a message in Inbox is opened , a sidebar shows on the left and the drop down menu moves down to the sidebar. Please see attached.

    Thanks you,
    mprav

    Attachments:
    You must be logged in to view attached files.
    #20780
    Shamim Hasan
    Keymaster

    Don’t you use gravatar in your website?
    This is a new feature, users can navigate to other messages from there. But there should show recipients avatar.

    If you do not like this feature there is an easy way to show like previous version. Let me know if you want that.

    #20847
    M G
    Participant

    Hi Shamim,

    We do not use gravatar in our website right now but we do plans to use it in future. So for now if there is a way to hide this feature, we would like to do that.

    Thanks

    #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 );
    
    #21053
    M G
    Participant

    Thank you, that worked.

Viewing 5 posts - 1 through 5 (of 5 total)

You need to purchase ‘Front End PM PRO’ to create topic in this support forum.

If you already purchased ‘Front End PM PRO’ please LOGIN.