Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
This permission should asked for logged in users only. Script which is responsible for this permission is loaded only for logged in users.
Can you please recheck if you get that pop-up if not logged in? Disable all cache before testing.January 2, 2021 at 4:19 pm in reply to: Users not able to choose receipt to send a new message #42153Shamim HasanKeymaster1. User can send to how many users same message at a time?
2. Can you please give me screenshot of “Recipient” and “Security” tab of the settings page of this plugin?
3. Give me a screenshot of the page from where user send a message.Shamim HasanKeymasterThank you for your nice suggestion.
I will try to add this in next version.Shamim HasanKeymasterThank you for your suggestion. Currently if you want to change this setup then you will need to add code in functions.php
May be in future version i will add a settings for this.Shamim HasanKeymasterYes, possible. Please see https://www.shamimsplugins.com/support/topic/group-messaging-2/#post-41306
December 28, 2020 at 4:05 pm in reply to: How to show new announcements to specific users, but hide to other users #42122Shamim HasanKeymasterYou can send them a message when they register. You can include any content there. See https://www.shamimsplugins.com/docs/front-end-pm/customization/send-welcome-message-user-register/
December 26, 2020 at 10:59 pm in reply to: How to show new announcements to specific users, but hide to other users #42117Shamim HasanKeymasterAnnouncements are tied to users. So if users came after announcements we cannot show that announcements to that user.
Shamim HasanKeymasterI see it is set to V3, Can you activate V2 and use google keys for that version and check if working?
December 25, 2020 at 10:20 am in reply to: How to show new announcements to specific users, but hide to other users #42102Shamim HasanKeymasterBy default only admins can see that button. Other users cannot see that button.
December 23, 2020 at 12:27 am in reply to: How to show new announcements to specific users, but hide to other users #42094Shamim HasanKeymasterIf you want to show new announcements to a certain role of users, then select that role only when create announcement.
If you want to show only a specific user, then send them a message.Shamim HasanKeymasterCan you please share your website url?
Shamim HasanKeymasterI do not know how (or what meta) you used to store that value, So i cannot give you full code.
You can use following code in your theme’s (child theme’s if you are using) functions.php (change necessary code to get that link from user profile)add_filter( 'fep_eb_email_legends', function( $legends, $mgs, $user_email ){ $link = ''; if( $user_email && ($user = get_user_by( 'email', $user_email ) ) ){ $link = 'Here get that link from $user profile'; } $legends['one_click_login'] = array( 'description' => __('One click Login link', 'front-end-pm'), 'where' => array( 'newmessage', 'reply' ), //where this tag will be used 'replace_with' => $link ); return $legends; }, 10, 3);Shamim HasanKeymaster1. Which user filed you want to send? sender or receiver?
2. Which field you want to send?Shamim HasanKeymasterShamim HasanKeymasterThere
$mgs->mgs_authoris the user id. So you can use this to get any value for that user. -
AuthorPosts