Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Hi,
mobile screen is too narrow to show icons. Currently we cannot show icons on mobile. But we are trying to improve this. May be in future we will find a way to show this.Shamim HasanKeymasterHi
1. Did you clear cache after changing setup?
If you want to send message only to admin you can set your admins in Dashboard > Front End PM > Settings > Recipients and set 0 in “Max Recipients” field. It will remove the ability to send message user to user.2. If user subscriber delete any message, that message does not get deleted from database. You can still see that message. You can also reply that message if you want and that user also get that reply. Go to Dashboard > Front End PM > Settings > Security and check “Can user reply messages deleted by other user?”
3. This plugin uses default wordpress options to show any media. If you want to show beyond that there is a easy hook to do that. Please use
fep_filter_attachment_download_link
hook to change that link to show directly the media instead of downloading. As this require custom code, if you need my assistance you can contact me through https://www.shamimsplugins.com/hire/4. https://www.shamimsplugins.com/support/topic/remove-setting/#post-12519
5. message inbox/sent is determined my last sender of that message. So if someone else is last sender then that message will end up in your inbox and vice versa.
Let me know.
Shamim HasanKeymasterWith the above code users will not see that group in settings page. So they cannot add them to that group. But if you add them to group (from back-end) then they can send message to that group.
Please test and let me know.
April 13, 2020 at 9:15 pm in reply to: What's the point in the plugin if it is not working with v3 recaptcha #36557Shamim HasanKeymasterFor V3 google check so many things in background before determining bot or human. It may be browser cookie/cache or anything which making false positive.
Also in v3 user do not have any option to prove that s/he is human.
I prefer to use v2 so that if it fails user will have option to prove that s/he is human.
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_get_all_groups', function( $groups ){ if( ! fep_is_user_admin() ){ unset( $groups[ 7930 ] ); } return $groups; });
This group will be hidden for users who are not admin.
If you want to hide for other user also let me know their user id or role.Let me know.
April 13, 2020 at 12:47 pm in reply to: I would like for my members to have a link to their inbox on their my account pa #36546Shamim HasanKeymasterWhich plugin you are using to create user dashboard?
When you go to message page see the address bar, that is your message page url. Add that url to account page.If you want to integrate full message system in account page you can use shortcode
[front-end-pm]
. Remember to add your account page as Front End PM Page in Dashboard > Front End PM PRO > Settings > GeneralShamim HasanKeymasterPlease add yourself to every group and add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_get_option', function( $value, $option ){ if( 'can-send-to-group' == $option ){ if( fep_is_user_admin() ){ $value = true; } else { $value = false; } } return $value; }, 10, 2 );
Then you will see an option to send message to group when sending message.
Shamim HasanKeymasterPlease go to Front End PM PRO > All Groups, then click “Edit” of the group whose id you want to know. Then see in address bar. Please see screenshot attached.
Attachments:You must be logged in to view attached files.Shamim HasanKeymasterThank you.
So now you want to hide some groups from some users, right? Which groups you want to hide (give me group id) from which users (give me those users role)?Shamim HasanKeymasterThis setup for wordpress page level setup and does not have any impact for group.
By default user can assign themselves to a group from settings page of the plugin. See https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/
In your website how users assign themselves to a group from signup? Did you change any code for this plugin?
Which group you want to hide from your members? Are your users logged in when they signup for groups?Shamim HasanKeymaster1. Which membership plugin you are using?
2. This plugin’s group feature does not have any option to add password. Are you creating groups from this plugin? Eg. Dashboard > Front End PM PRO > All Groups
3. When and from where your users are added themselves in groups?Shamim HasanKeymasterLicense data is cached in website for 1 week for better performance. So it will automatically be resolved any time within 1 week.
If you want to resolve it faster please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/license-keys-not-activating/April 12, 2020 at 2:48 pm in reply to: What's the point in the plugin if it is not working with v3 recaptcha #36473Shamim HasanKeymasterMay i know what error you are getting?
Did you changed google keys for v3?
Can you share your form page url?(This plugin does not even offer any additional feature in PRO version, this money is for the time i spend behind this plugin. why you even purchase this?)
(I already informed my billing department to refund you. You will get your refund in couple of days. As this is an emergency situation here, refund may delay couple of days, but you will get it, don’t worry)Shamim HasanKeymasterApril 11, 2020 at 10:56 am in reply to: List of messages received by the logged in user ( get_current_user_id () ). #36413Shamim HasanKeymasterSorry there is no shortcode for that.
If you need that you can contact us using https://www.shamimsplugins.com/hire/ -
AuthorPosts