Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Download button of that page is not working.
You can change that theme to one of default theme (eg. twenty*) to see if it is working.
Let me know.Shamim HasanKeymasterFrom where did you downloaded this theme? Can you give me link of that theme? Or upload in your google drive and give me the link.
Shamim HasanKeymasterWhich theme you are using? Can you give me your theme so that i can see why it is not showing and provide you solution?
Shamim HasanKeymasterDid 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. -
AuthorPosts