Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
For future reference:
To remove toggle feature entirely add following code in your theme’s (child theme’s if you are using) functions.phpadd_filter( 'fep_filter_message_toggle_feature', '__return_false' );
Shamim HasanKeymaster1. First please reduce sensitivity level. Google normally do not return 1 score. It is too high. 0.5 is default.
2. V3 does not display any captcha. If it thinks it is bot, it will just block the message. No captcha will show. If you want to show user a captcha you can use V2.August 4, 2020 at 7:09 pm in reply to: Some customers are complaining – “Please solve captcha correctly” #40023Shamim HasanKeymaster1. Where did you added that error message? In this plugins settings page?
2. Are you still using failed login captcha?
3. Which plugin/theme you are using to create that login form? Can you give me the code of the login form?Shamim HasanKeymasterCan you mark the position where you want to show the words? Also what you want to show?
Do you want to show any text field?Shamim HasanKeymasterYou can use like following
add_action( 'fep_form_field_output_file', function( $field, $errors ){ //Output your file input field here }, 10, 2);
August 4, 2020 at 8:45 am in reply to: Some customers are complaining – “Please solve captcha correctly” #39974Shamim HasanKeymasterI see you are using failed login captcha to 2. That means it will not validate captcha before 2 failed login attempts. Those who are reporting for captcha, how many times they failed? What was the failing reason for first 2 attempts?
August 3, 2020 at 9:07 am in reply to: Some customers are complaining – “Please solve captcha correctly” #39927Shamim HasanKeymasterHi again,
As CF7 load captcha script in all pages, this may create some conflict in other pages not in CF7 page, because this plugin does not load in CF7 page.
Can you disable captcha in CF7? Just remove keys from CF7 captcha settings. Then see if this working. If you received spam contact messages you can activate https://wordpress.org/plugins/spam-protection-without-captcha/ temporarily which will prevent spam using different approach and will not have any conflict.Run one or 2 days for testing. Let me know the result.
Shamim HasanKeymasterIt should show above form.
If you want to show bellow form you can usefep_after_form_fields
hookJuly 31, 2020 at 8:01 pm in reply to: Some customers are complaining – “Please solve captcha correctly” #39868Shamim HasanKeymasterThank you.
That is a very good point. I will update you about my finding.
By this time can you give me a screenshot of the settings page of this plugin in your website? You can mask keys.July 31, 2020 at 5:19 pm in reply to: Some customers are complaining – “Please solve captcha correctly” #39863Shamim HasanKeymasterIf implementation is incorrect then it should fail in all websites and always. But It seems it is working for some of your users.
This plugin does not have build in logging but have hook which you can use to log. Please seeanr_verify_captcha
hook.Shamim HasanKeymasterUse like following
add_action( 'fep_before_form_fields', function( $where ){ if( in_array( $where, [ 'newmessage', 'reply' ] ) ) { echo "This is your sentence"; } });
Shamim HasanKeymasterIt seems for any reason DB table was not created.
Please open functions.php of this plugin and in line around 28 changeversion_compare( $installed_ver, FEP_DB_VERSION, '!=' )
(change!=
to=
) and refresh your website. Check your DB is those tables are created. Then change it back as it was.Let me know.
July 29, 2020 at 12:24 pm in reply to: Some customers are complaining – “Please solve captcha correctly” #39811Shamim HasanKeymasterplease note 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. If it fails, it fails.
I prefer to use v2 so that if it fails user will have option to prove that s/he is human.
Shamim HasanKeymasterYou can follow this https://www.shamimsplugins.com/support/topic/need-to-add-text-above-reply-box/#post-12342
Let me know.Shamim HasanKeymasterPlease let me know following.
1. Did you use this plugin before starting this issue?
2. Do you have messages (messages between users) from previous version?
3. Check database and see if there any database table name start withPREFIX_fep_
where PREFIX if your database table prefix. if yes, let me know how many and what are they.
4. Do your set database user in wp-config.php have permission to create database table? -
AuthorPosts