Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Did you setup this plugin for comment form?
Please click “Settings” bellow this plugin name and set google keys and check “Comment Form” under Enabled forms.Let me know.
Shamim HasanKeymasterwhat is your php version?
in which file you added this code?
Can you please give me screenshot of your code after adding this code (including 2 lines before and after)?Shamim HasanKeymasterYou can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_message_before_send', function( $message ) { if ( fep_is_user_admin() ) { $message['mgs_status'] = 'publish'; } return $message; });
Shamim HasanKeymasterShamim HasanKeymasterHi,
Your most of the code if ok. Last part is changed. You can remove all under “FEPM set Advanced group visibility for selected role.” and add following insteadadd_filter( 'fep_get_all_groups', function( $groups ){ // Change this with which role you want to give access to all groups $allowed_roles = array( 'editor', 'administrator' ); if ( array_intersect( $allowed_roles, wp_get_current_user()->roles ) ) { return $groups; } // Change this with your desire group ids $restricted_groups = array( 11, 12, 15 ); foreach ( $restricted_groups as $group_id ) { unset( $groups[ $group_id ] ); } return $groups; });
Please note that group slug is no longer relevant. Use group id (post id of that group) instead.
Let me know.
Shamim HasanKeymasterFor any hiring request please use https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php
add_action( 'init', function(){ if ( ! empty( $_GET['fepaction'] ) && function_exists( 'um_stories' ) ) { remove_action( 'wp_enqueue_scripts', array( um_stories(), 'add_scripts' ) ); } });
Also if you want you can ask them to load their script only pages where that plugin’s form is loaded. That plugin is loading their script in all pages.
Shamim HasanKeymasterPlease check now.
This plugin also support in Contact Form 7. Please see instruction in https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-contact-form-7/Both plugin uses same captcha in same page which made conflict. I have disabled CF7 captcha and added this plugin captcha in CF7. Now working. I have only edited CF7 form id 11. If you need for other forms you can follow above link.
Shamim HasanKeymasterWhich plugin you are using for your login form? Can you give me your form url?
Shamim HasanKeymasterI see you have created another topic regarding this same issue. I am closing this one and continue in https://www.shamimsplugins.com/support/topic/recaptcha-not-showing-on-my-login-page-2/
Shamim HasanKeymasterI do not have that plugin. If you can send me that plugin i can investigate and try to resolve if there any conflict.
Shamim HasanKeymasterPlease go to Front End PM PRO > Settings > Emails > Email Piping/POP3 then set Enable as “None” then save changes.
For sending email you can use any one from https://wpengine.com/support/using-3rd-party-email-provider-send-mail-wordpress/ (eg. WP Mail SMTP) and this plugin will automatically use that plugin to send email. You can setup for gsuit/sendgrid there.Shamim HasanKeymasterThere are 2 features (Email Piping and POP3) to do same one thing (Receive email). Your hosting and email service should support at least one of them to make it work.
https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/
https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/pop3-feature/Did you ask wpengine why it fails when we use
imap_open
? even without an error log? Also no code is processing after that call?Shamim HasanKeymasterI believe sendgrid is to send email, not receiving.
You can ask them if they support pop3.Shamim HasanKeymasterYou can use any version.
Please note for v3 there will not show any option to check. So if any user get false positive he/she will not be able to submit form. -
AuthorPosts