Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
January 19, 2018 at 6:02 pm in reply to: Muliple recipients in fep_shortcode_new_message_form shortcode #10031Shamim HasanKeymaster
You can add following code in your theme’s (child theme’s if any) functions.php
add_filter('fep_filter_message_before_send', function( $message ){ $your_extra_user_ids = array( 1,2,3 ); //Only for parent message if( empty($message['post_parent'] ) ){ if( ! is_array( $message['message_to_id'] ) ){ $message['message_to_id'] = array( $message['message_to_id'] ); } $message['message_to_id'] = array_merge( $message['message_to_id'], $your_extra_user_ids ); } return $message; });
Shamim HasanKeymasterThere are 3 types of name in wordpress, username, nicename and display name. Display name is to display the name and this plugin show that.
Please go to user edit profile page in back-end to see the difference of the names of a user.January 18, 2018 at 11:24 pm in reply to: Muliple recipients in fep_shortcode_new_message_form shortcode #10016Shamim HasanKeymasterThis shortcode does not support multiple recipient.
You can use fep_action_message_after_send hook to set participants to other user but may encounter some caching issue with message count. Instead You can usefep_filter_message_before_send
and passmessage_to_id
as array of user ids. remember it already holds current recipient (may be as string), so add only other users.Shamim HasanKeymasterIs it happening to all plugins or only for this plugin?
I do not have that much experience with that plugin (Loco translate). Can you please ask question to them? Let me know.January 18, 2018 at 6:35 pm in reply to: Paste directly multiple recipients names in the recipient box #9999Shamim HasanKeymasterTo change recipients limit go to Dashboard > Front End PM PRO > Settings > Recipient
It works only with user ID.January 18, 2018 at 6:22 pm in reply to: Paste directly multiple recipients names in the recipient box #9993Shamim HasanKeymasterNot in recipient box, paste in url (address bar), add &fep_mr_to=1,2 (with valid user IDs) in last of url when New Message page and press enter, that will fill the recipient box.
Shamim HasanKeymasterDo you receive any error?
Please give me screenshot of
1. Dashboard > Front End PM PRO > Settings > Emails
2. Email which received in your email when you send a message in website
3. Any error when your reply to emailJanuary 18, 2018 at 12:25 am in reply to: Paste directly multiple recipients names in the recipient box #9962Shamim HasanKeymasterYou can make a list of comma separated user ids and pass that ids in url as i suggest in earlier post. In New Message page pass those ids like i suggested and hit enter, that will do the job.
Thanks.
Shamim HasanKeymasterThis plugin use wordpress restriction for file types. Please see https://codex.wordpress.org/Plugin_API/Filter_Reference/upload_mimes to add your file type.
January 17, 2018 at 8:21 pm in reply to: Paste directly multiple recipients names in the recipient box #9950Shamim HasanKeymasterFrom where you want to copy? you can pass in url like
fep_mr_to=2,3,4
where 2,3,4 are user ids.Shamim HasanKeymasterPlease follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/ step by step.
Shamim HasanKeymasteryou mean cannot?
If you follow that step by step your po file will be updated and you will be able to translate all string.Or download attached pot file to translate.
Attachments:You must be logged in to view attached files.Shamim HasanKeymasterShamim HasanKeymasterYes i understand.
So is not it going to your set admin now?
When user send a message, that message should go to directly your set admin. is not it going to your set admin?Shamim HasanKeymasterSo whats not working? I see everything is ok.
-
AuthorPosts