Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
March 6, 2020 at 12:21 am in reply to: "Front End PM PRO needs to database update" Dashboard message #35010Shamim HasanKeymaster
You 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.Shamim HasanKeymasterMay be it is not compatible with that setup.
If you cannot make it work with that setup and want a refund please contact using https://www.shamimsplugins.com/contact-us/February 13, 2020 at 2:25 am in reply to: Email Sending stays pending unless you change Interval settings #34454Shamim HasanKeymasterUsing system cron in recommended. You can try using that.
February 12, 2020 at 1:28 am in reply to: Preview or clickable profile / Avatar so you know who is messaging you. #34403Shamim HasanKeymasterThis plugin uses wordpress gravatar. That means you can use any wordpress hook to change this avatar. If you use any plugin which allow upload profile image, that plugin also may have option to change gravatar image. You can ask that plugin developer.
Let me know if they do not assist you.February 10, 2020 at 8:46 pm in reply to: Captcha challenge not showing in Woocommerce Checkout Form #34366Shamim HasanKeymasterPlease add following code in your custom css
.anr_captcha_field_div { clear: both; }
Let me know.
Shamim HasanKeymasterIt is possible but needs custom code. You can use
fep_filter_attachment_icon
filter to show that image.February 10, 2020 at 8:32 pm in reply to: Preview or clickable profile / Avatar so you know who is messaging you. #34361Shamim HasanKeymasteradd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_user_name', function( $name, $id ){ if ( $name && fep_get_the_id() ) { $name = '<a href="https://yoursite.com/your-all-userlisting-page/user/'. $id . '/">' . $name . '</a>'; } return $name; }, 10, 2);
Change your website your user listing page actual url.
Shamim HasanKeymasterIt should not show any checkbox. It should hide “To” field altogether for your set user roles. Did you follow last 2 paragraphs from that docs page?
How many admins you have added? -
AuthorPosts