Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,771 through 1,785 (of 2,477 total)
  • Author
    Posts
  • in reply to: Host doesn't support email piping to a program #14578
    Shamim Hasan
    Keymaster

    If your host doesn’t support piping of emails to a program then your users need to go to your website to reply messages. You can send message link in notification email so that user can follow that link to go to your website to reply his messages.

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

    Date not fixed yet. May be end of the next month.

    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.

Viewing 15 posts - 1,771 through 1,785 (of 2,477 total)