Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
October 18, 2020 at 12:36 pm in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41420Shamim HasanKeymaster
If you find any plugin which working with that form, please let me know so that we can try to implement that in our plugin.
Also most hosting support one click staging site creation, you can contact your host if they support that.
If not you can give me access to your website so that i can try to find out where the issue is.
Shamim HasanKeymasterTo count as staging site your staging site have to follow at least one of the criteria of https://freemius.com/help/documentation/selling-with-freemius/license-utilization/
If you cannot follow above, you can deactivate license from staging site and active in main site.
October 17, 2020 at 9:00 am in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41411Shamim HasanKeymasterRegistration page captcha keys are not coming from this plugin, so it doesn’t matter how many times you change code in this plugins settings page. We need to find out from where this captcha keys coming from. Can you search in db if i tell you what to search?
Working on live website is risky. If you understand the risk and want to work on live site you can send admin details using https://www.shamimsplugins.com/sensitive-information/
October 16, 2020 at 10:42 pm in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41403Shamim HasanKeymasterCan you create a staging site and give me access there so that i can try to find the issue?
October 16, 2020 at 6:55 pm in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41398Shamim HasanKeymasterWhich version of the plugin you are using? Can you use latest version of the plugin?
Also it seems this page google keys are coming from wcfm. Can you check if they have any settings to change this keys? You can even ask their support if you do not get any settings for keys, they may know where this keys coming from in this registration page.Let me know.
Shamim HasanKeymasterIn your staging site i have updated this plugin to latest version and all seems ok now.
Please check and let me know.Shamim HasanKeymasterIt seems footer script is not loaded in your website.
Can you deactivate all plugins except this one and CF7 and activate one of default theme (tweenty*) then test? Then activate one by one and test.
Let me know when you get conflict so that we can try to fix the conflict.Shamim HasanKeymasterCF7 forms are little different then other forms.
Other forms are only 1 form per type. But a website can have multiple CF7 forms. So user can activate captcha per form by adding that code in the form.
Also as this captcha support multiple types (v2 & v3), User can show captcha where they want by this method. A tickbox will not have that much flexibility.That’s why we implemented this method.
Shamim HasanKeymasterMay you please send me your contact form url?
Shamim HasanKeymasterFor wpforms captcha setup please follow https://wpforms.com/docs/setup-captcha-wpforms/
Shamim HasanKeymasterAs i understand you want to restrict message sending between users based on some custom value of each user.
You can use following codeadd_filter( 'fep_current_user_can', function( $can, $cap, $id ){ if ( 'send_new_message_to' != $cap || ! is_user_logged_in() || fep_is_user_blocked() ) { return $can; } //Here check your custom value. //sender user id = get_current_user_id() //receiver user id = $id //return true if this sender can send to this receiver //return false if this sender can not send to this receiver }, 10, 3);
Shamim HasanKeymasterYour refund is processed.
We provide license to provide update and support.
But reCaptcha is a service of google. Every website needs to have keys from google to get that service. Our settings page screenshot is attached. You can see we provide instructions in multiple places how to get those keys.
You can suggest me how we can be more explicit with that instruction so that i can provide better instructions for all users.
Attachments:You must be logged in to view attached files.Shamim HasanKeymasterYou 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?
-
AuthorPosts