Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
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 HasanKeymaster
For 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/Shamim HasanKeymasterYou have enabled failed login captcha. That means if you fail 2 times (try using wrong password 2 times), it will show captcha.
Shamim HasanKeymasterI have sent you latest pot file in your email address.
Let me know if that works.Shamim HasanKeymasterNot this page.
Go to your website admin area (eg. https://fastcars.com.au/wp-admin/). Dashboard > Settings > Advanced noCaptcha and invisible Captcha and send me a screenshot of that page. -
AuthorPosts