Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,756 through 1,770 (of 2,460 total)
  • Author
    Posts
  • in reply to: Sort announcements on year #14544
    Shamim Hasan
    Keymaster

    Please go to your “Message Box”. Top of the messages there is search field. Top of the announcements also will have same search field.

    in reply to: Sort announcements on year #14539
    Shamim Hasan
    Keymaster

    Search announcement feature will be added in next version of this plugin.

    in reply to: Sort announcements on year #14463
    Shamim Hasan
    Keymaster

    you want to sort announcement by date? Eg. most oldest on top? By default it shows most recent on top.

    Email notification will be sent to all users who have access to that announcement. Eg. If you send announcement to Subscriber and Editor roles, then all users of that roles will receive notification email.

    in reply to: Remove Read Receipt by Admin #14396
    Shamim Hasan
    Keymaster

    You can use fep_filter_read_receipt to change output of your read receipt. You can show only “Read” without name.

    in reply to: Toggle Messages #14362
    Shamim Hasan
    Keymaster
    Shamim Hasan
    Keymaster

    Groups will not save until you “Save Changes”. So if you accidentally remove any group do not “Save Changes”. Refresh page or navigate to another page will automatically show your accidentally removed groups.

    Shamim Hasan
    Keymaster

    If you want “To” field hidden, then set Front End PM PRO > Settings > Recipient > Max Recipient = 0.
    User will be able to send message to only admins you set in Front End PM PRO > Settings > Recipient > Admins

    Shamim Hasan
    Keymaster

    You can add following code in your theme’s (child theme’s if any) function.php

    add_filter( 'fep_main_shortcode_output', function( $out ){
        if( ! is_user_logged_in() ){
            $out = '<div style="background-color:#000000;color:#ffffff;">Login to see messages.</div>'; //Change this line as you want.
        }
        return $out;
    });
    in reply to: Change message url in email sent to user #14304
    Shamim Hasan
    Keymaster

    Please go to Front End PM PRO > Settings > Emails > New message content (click “Text” tab in Editor)
    Then replace Message URL: <a href="{{message_url}}">{{message_url}}</a> with

    <center><a href="{{message_url}}"
    style="background-color:#49a9ce;border-radius:px;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:13px;font-weight:bold;line-height:53px;text-align:center;text-decoration:none;width:200px;-webkit-text-size-adjust:none;cursor:pointer;">View Message</a></center>

    You can do same for “Reply content”.
    It will create a simple button, clicking that will go to your website message page.

    Shamim Hasan
    Keymaster

    Please do not change any plugin code. It will be overwritten when you update plugin.
    There are lots of hook in this plugin. So you can change almost anything without touching plugin code.
    To achieve this functionality without changing plugin code, please add following code in your theme’s ( child theme’s if any) functions.php

    add_filter( 'fep_filter_user_name', function( $name, $id ){
        $name = fep_get_userdata( $id, 'first_name', 'id' ) . ' ' . fep_get_userdata( $id, 'last_name', 'id' ) . ' ' . fep_get_userdata( $id, 'last_name_suffix', 'id' );
        return $name;
    }, 10, 2 );
    in reply to: Publish Admin Message Directly #14290
    Shamim Hasan
    Keymaster

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

    add_filter( 'fep_filter_message_before_send', function( $message ){
        if( fep_is_user_admin() ){
            $message['post_status'] = 'publish';
        }
        return $message;
    });
    in reply to: Change message url in email sent to user #14281
    Shamim Hasan
    Keymaster

    1. if you hide front-end-pm-page then your link will be invalid.
    2. You can edit message content in Front End PM PRO > Settings > Emails and create a button instead.

    in reply to: Sound #14267
    Shamim Hasan
    Keymaster

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

    add_filter( 'fep_filter_notification_script_localize', function( $localize ){
        $localize['sound_url'] = 'your_sound_url.mp3';
        return $localize;
    });

    Upload your sound file in your website and change your_sound_url.mp3 with your sound file url.

    in reply to: Email not getting delivered #14249
    Shamim Hasan
    Keymaster

    Did you change any code in plugin or use any custom code for this plugin?

    From which email you are receiving normal emails (eg register, lost password email)? Please set that email address in Dashboard > Front End PM PRO > Settings > Emails > From Email and test.

    in reply to: Email not getting delivered #14230
    Shamim Hasan
    Keymaster

    in front-end, from where you send messages, each user has his own settings page, there.

    From which email you are receiving normal emails (eg register, lost password email)? Please set that email address in “From Email” in this plugin settings and test.

Viewing 15 posts - 1,756 through 1,770 (of 2,460 total)