not saving message but allowing messaging


Home Forums Front End PM PRO not saving message but allowing messaging

This topic is: Resolved
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #18727
    xyx
    Participant

    Is is possible to not save any message from both user and admin side the dashboard, but allow send message feature for replying only from email . Something to do with fep_save_message and other hooks?

    #18733
    Shamim Hasan
    Keymaster

    If we do not save message to database we can not track that message and also when somebody will reply from email we will not know which message they replied to.

    #18745
    xyx
    Participant

    How about not showing to both admin and users in the dashboard, but keeping in the database for reply tracking purpose? Basically we want to hide message page from both admin and users.

    #18765
    Shamim Hasan
    Keymaster

    Add following code in your theme’s (child theme’s if any) functions.php

    add_action( 'admin_menu', function(){
    	remove_menu_page( 'fep-all-messages' );
    }, 11 );
    
    #18767
    xyx
    Participant
    This reply has been marked as private.
    #18770
    Shamim Hasan
    Keymaster

    Add following code in your theme’s (child theme’s if any) functions.php

    add_action( 'admin_menu', function(){
    	remove_submenu_page( 'fep-all-messages', 'fep-all-messages' );
    }, 11 );
    
Viewing 6 posts - 1 through 6 (of 6 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.