Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
No. you will get a notification in real time (depending on your setup it may delay 1 min or more) and you will have to click/refresh page to read that message.
Shamim HasanKeymasterWhich contact form plugin you are using? Are you using Contact Form 7? If yes, please see https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-contact-form-7/
If still not working please let me know your contact form url.
Shamim HasanKeymasteryou should have received an email containing PRO version download link and license key.
You can also see your license key in https://www.shamimsplugins.com/checkout/purchase-history/ (Click “View Details & Downloads)
For activation process please see https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/activate-pro-version-2/
Let me know
Shamim HasanKeymasterAs you have set this as resolved, i believe you have found your solution.
Shamim HasanKeymasterAs noCaptcha did not work on that theme and after changing to default theme works, it means that theme has some issue. It may not works with other plugins as well.
There are lots of theme with three column support out there.
Please go to Dashboard > Appearance > Themes > Add New
Then click “Feature Filters” and select three column. It will show all theme’s which support three columns. Install and activate which one you like.See screenshot.
Attachments:You must be logged in to view attached files.Shamim HasanKeymasterYou can use
FEP_Message_Query
class to do that.If you want me to write some code for this you can contact me using https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterDownload 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/
-
AuthorPosts