Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
You need to get site key and secret key from google. Please see https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/how-to-get-google-recaptcha-keys/
Let me know.
If you need refund don’t worry about it. I will full refund you.
Shamim HasanKeymasterCan you please give me a screenshot of your license page and error message?
Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_get_option', function( $value, $option ) { if ( in_array( $option, ['can-send-to-group', 'allow_attachment'] ) ) { if( fep_is_user_admin() ) { return true; } else { return false; } } return $value; }, 10, 2 );
This will allow to send group message and attachments only by admins.
May you explain “the user could only add himself to a specific group” a little more? Suppose you have 5 groups but you want your users can add themselves only specific 2 groups?
Shamim HasanKeymasterIt redirect me to your main login page, so i cannot check. Please disable redirect for now to check.
Shamim HasanKeymasterI visited your website and it seems this is not the actual code of your login form.
Please re-check you have added code in appropriate location.Let me know.
Shamim HasanKeymasterYou can upload in drive/dropbox and give me link.
Or paste here and wrap code between backticks.Shamim HasanKeymasterMay you please let me know following
1. Version of this plugin, wordpress and php
2. Activate query monitor plugin and see which query taking more time
3. Deactivate all other plugins and activate one of default theme (tweenty*) then test. If it is taking normal time then activate one by one and test.Shamim HasanKeymasterAdd
<?php do_action( 'anr_captcha_form_field' ); ?>
before submit button.
Let me know.Shamim HasanKeymasterI think
UPT()->get_user_id()
is receiver user id in your code. So you can use likefep_current_user_can( 'send_new_message_to', UPT()->get_user_id() )
Shamim HasanKeymasterYou can wrap your code between back ticks.
Which user message is disabled? Sender or receiver? From where they disable the message?
Shamim HasanKeymasterThen you need to add code in php. Check
fep_current_user_can( 'send_new_message' )
before that link output.Shamim HasanKeymasterIf you follow https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-contact-form-7/ it will be auto activated for contact form 7
Shamim HasanKeymasterDo you use any custom code or plugin for login form? Or this form come from theme? Can you give me code of this form so that i can try to give you some integration code if possible?
Shamim HasanKeymasterCan you please give me screenshot of Front End PM PRO > Settings > Security tab full page?
Shamim HasanKeymasterHi again,
This can be done. But currently this plugin does not expose those api. You will need to create 2 api calls, 1 to send message and another to get messages. Then you can use those 2 apis to send message from your app and get messages from your app.Everything in website is already taken care off.
This plugin already have some REST api call, you can see those code to get an idea how you can create your own. See
class-fep-rest-api.php
file. -
AuthorPosts