Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,906 through 1,920 (of 2,484 total)
  • Author
    Posts
  • in reply to: Unsubscribe link in bottom of email #12510
    Shamim Hasan
    Keymaster

    Settings form in nonce protected. So we cannot change any option without submitting form from there. You can redirect users to settings page, then users can set as they want.

    Or you can use fep_update_user_option( 'allow_emails', 0 ) to uncheck option programmatically.

    in reply to: Can we add multiple users to a group at once #12477
    Shamim Hasan
    Keymaster

    2 options are available now. You can add one by one and/or all members of a role. You can also remove some members from the role.
    Eg. you have added subscriber role, after save all members of the subscriber role will be added. Then you can remove some members from there also.

    in reply to: Can we add multiple users to a group at once #12471
    Shamim Hasan
    Keymaster
    in reply to: How to hide the display of "message box size". #12465
    Shamim Hasan
    Keymaster

    Answer-1: Currently there is no direct class to hide. You can override header.php template to hide that line. Follow https://www.shamimsplugins.com/docs/front-end-pm/customization/change-templates-2/ to change template.
    or wait for next version. I will add a class there so that you can easily hide that line with css.

    Answer-2:
    It will automatically redirect you to message page where you can read that message. Redirect to any other page add following code in your theme’s (child theme’s if any) functions.php (Change YOUR CURRENT MESSAGE PAGE URL and YOUR DESIRE PAGE URL accordingly)

    add_filter( 'fep_header_notification', function( $show ){
        $show = str_replace( 'YOUR CURRENT MESSAGE PAGE URL', 'YOUR DESIRE PAGE URL', $show);
        return $show;
    });
    
    Shamim Hasan
    Keymaster

    This plugin uses one time key. So it will send only one message at a time. If you click multiple times also, only one message will be sent.

    in reply to: error key licence – error 500 #12415
    Shamim Hasan
    Keymaster
    in reply to: Group message #12379
    Shamim Hasan
    Keymaster

    Please go to class-fep-group-message.php line 370
    before $group = get_post_meta( $id, ‘_fep_group’, true );
    add

    
    if( 'threaded' == fep_get_message_view() ){
        $id = fep_get_parent_id( $id );
    }
    

    Let me know if this works.

    in reply to: Need to Add Text above Reply Box #12342
    Shamim Hasan
    Keymaster

    You can use fep_before_form_fields to show before form fields or fep_after_form_fields to show after form fields.

    in reply to: Slow – Problem since update #12334
    Shamim Hasan
    Keymaster

    Please select “Front End PM Page” from dropdown and save.

    in reply to: is ti posible to BCC #12311
    Shamim Hasan
    Keymaster

    in “Threaded” view, message recipient is only set in parent message. So it is not possible to reply that message without replying to all recipient.

    Suppose user U1 sent a message M1 to user U2 and U3. So M1 recipient list is U1, U2 and U3. So if U2 reply that message as R1, no recipient list is attached to R1. it use M1 recipient list. So if you want to exclude any user from R1 that is not possible as R1 has no recipient list. It uses M1 recipient list.

    I do not see any logic to achieve what you want.

    In “Individual” view, recipient list also attached to reply messages. In that case you can manually change that.

    So you have to set “Separate message” or “Individual” view to achieve what you want.

    in reply to: is ti posible to BCC #12305
    Shamim Hasan
    Keymaster

    what is your message view setup? Threaded or individual?

    in reply to: error key licence – error 500 #12302
    Shamim Hasan
    Keymaster

    are you getting any error related to this plugin in your server log?
    7.4 is latest version and no update is there for this version, so update is not an issue.
    did you changed anything (any code or new plugin) after installed this plugin?
    Can you please install again this plugin and see if problem exists or problem come after some fixed time?

    in reply to: Slow – Problem since update #12297
    Shamim Hasan
    Keymaster

    Front-end or Back-end became slow? or both?
    where it is showing inbox? can you please give me a screenshot?

    in reply to: is ti posible to BCC #12294
    Shamim Hasan
    Keymaster

    In that case you have to set “Separate message”.

    in reply to: is ti posible to BCC #12276
    Shamim Hasan
    Keymaster

    You can hide other users but that will create issue when a user reply that message. That user does not know which other users are there. But reply will goes to all users.

Viewing 15 posts - 1,906 through 1,920 (of 2,484 total)