Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
March 16, 2020 at 2:02 am in reply to: "Front End PM PRO needs to database update" Dashboard message #35305Shamim HasanKeymaster
If it is ok to remove previous messages between users, easiest way is to check Front End PM PRO > Settings > General > Delete data on uninstall, then uninstall and delete this plugin from admin dashboard. Then install again.
This plugin creates 4 db tables and save some options in option table. All are prefix with
fep_
. You can delete those from db and it will automatically start again from the beginning. If you follow above steps then that will take care of deleting all of these.Let me know.
March 16, 2020 at 1:52 am in reply to: Slow website loading wp-json/front-end-pm/v1/notification status "Pending". #35303Shamim HasanKeymaster2 minutes between call is normal.
Call should be completed in less than a second. I cannot tell you anything without investigate it myself.March 13, 2020 at 10:51 pm in reply to: Slow website loading wp-json/front-end-pm/v1/notification status "Pending". #35250Shamim HasanKeymasterDid you change notification sending interval?
How much time it shows between 2 calls?
Can you give me access to your website so that i can check?March 13, 2020 at 10:48 pm in reply to: Email Sending stays pending unless you change Interval settings #35248Shamim HasanKeymasterChange Dashboard > Front End PM PRO > Settings > Emails > Email sending interval to something else. Then wait that much time.
Let me know.
Shamim HasanKeymasterWhich version of captcha you were using?
To remove that part from contact form please follow followingGo to Dashboard > Contact > Contact Forms
Mouse over your form where you want to remove. Then click “Edit”
Then remove [anr_nocaptcha g-recaptcha-response] and “Save”March 12, 2020 at 9:02 pm in reply to: I have installed the PRO plugin for about a year. Can I delete the Free Version? #35217Shamim HasanKeymasterYou can delete FREE version.
If possible delete using FTP/File Manager.
If you delete from wordpress admin, make sure Dashboard > Front End PM PRO > Settings > General > Delete data on uninstall is unchecked.March 6, 2020 at 12:23 am in reply to: Captcha challenge not showing in Woocommerce Checkout Form #35012Shamim HasanKeymasterHi Jose,
Please create a new topic. This topic is already resolved.
Also please include your website url.March 6, 2020 at 12:21 am in reply to: "Front End PM PRO needs to database update" Dashboard message #35010Shamim HasanKeymasterYou were using version less than 4.1 before update to this version.
Do you have previous messages? Is it ok if we remove previous messages between your users?Shamim HasanKeymasterLicense data is cached for 1 week for performance reason. This will automatically go away within 1 week.
If you want to update now please remove license then save changes, again input license and again save changes.Shamim HasanKeymasterShamim HasanKeymasterShamim HasanKeymasterAdd following code in your child theme’s functions.php (untested)
add_filter( 'authenticate', function( $user, $username = '', $password = '' ){ if ( $user instanceof WP_User ) { if ( array_intersect( $user->roles, [ 'administrator' ] ) ) { remove_filter( 'authenticate', array( anr_captcha_class::init(), 'login_verify' ), 999, 3 ); } } return $user; }, 990, 3 );
Let me know.
Shamim HasanKeymasterYou can disable captcha check from login page. Unchecked Login Form from Dashboard > Settings > Advanced noCaptcha & Invisible Captcha
Shamim HasanKeymasterShamim HasanKeymasterAs you are using two factor authentication, there is no need to use any captcha.
Captcha block any bot, as you are already using two factor authentication, bot cannot pass that step. So no need to use captcha there. If you want you can use captcha in any other forms, eg. comment, you can use there. In that case deselect login form captcha. -
AuthorPosts