Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
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.Shamim HasanKeymaster2 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.Shamim HasanKeymasterShamim HasanKeymasterAnswer-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; });
March 21, 2018 at 10:26 am in reply to: Make "Send Message" and "Reply" button show spinner animation on send. #12447Shamim HasanKeymasterThis 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.
Shamim HasanKeymasterYou can download from https://www.shamimsplugins.com/checkout/purchase-history/
Shamim HasanKeymasterPlease go to class-fep-group-message.php line 370
before $group = get_post_meta( $id, ‘_fep_group’, true );
addif( 'threaded' == fep_get_message_view() ){ $id = fep_get_parent_id( $id ); }
Let me know if this works.
Shamim HasanKeymasterYou can use
fep_before_form_fields
to show before form fields orfep_after_form_fields
to show after form fields.Shamim HasanKeymasterPlease select “Front End PM Page” from dropdown and save.
Shamim HasanKeymasterin “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.
Shamim HasanKeymasterwhat is your message view setup? Threaded or individual?
Shamim HasanKeymasterare 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?Shamim HasanKeymasterFront-end or Back-end became slow? or both?
where it is showing inbox? can you please give me a screenshot?Shamim HasanKeymasterIn that case you have to set “Separate message”.
Shamim HasanKeymasterYou 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.
-
AuthorPosts