Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,051 through 1,065 (of 2,486 total)
  • Author
    Posts
  • in reply to: I do not see the NoCaptcha #28192
    Shamim Hasan
    Keymaster

    As 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.
    in reply to: Check for meta in all messages for current user #28167
    Shamim Hasan
    Keymaster

    You 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/

    in reply to: I do not see the NoCaptcha #28165
    Shamim Hasan
    Keymaster

    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.

    in reply to: I do not see the NoCaptcha #28132
    Shamim Hasan
    Keymaster

    From 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.

    in reply to: I do not see the NoCaptcha #28098
    Shamim Hasan
    Keymaster

    Which theme you are using? Can you give me your theme so that i can see why it is not showing and provide you solution?

    in reply to: I do not see the NoCaptcha #28083
    Shamim Hasan
    Keymaster

    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.

    in reply to: Exempt admin from Pending Messages #28081
    Shamim Hasan
    Keymaster

    what 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)?

    in reply to: Exempt admin from Pending Messages #28076
    Shamim Hasan
    Keymaster

    You 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;
    });
    
    in reply to: Custom code clash pre update check #28022
    Shamim Hasan
    Keymaster

    After update follow bellow screenshot.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Custom code clash pre update check #28017
    Shamim Hasan
    Keymaster

    Hi,
    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 instead

    add_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.

    in reply to: New message problem. #28014
    Shamim Hasan
    Keymaster

    For any hiring request please use https://www.shamimsplugins.com/hire/

    in reply to: New message problem. #27992
    Shamim Hasan
    Keymaster

    Please 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.

    in reply to: Recaptcha not showing on my login page #27983
    Shamim Hasan
    Keymaster

    Please 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.

    in reply to: Recaptcha not showing on my login page #27975
    Shamim Hasan
    Keymaster

    Which plugin you are using for your login form? Can you give me your form url?

    in reply to: Recaptcha not showing on my login page #27972
    Shamim Hasan
    Keymaster

    I 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/

Viewing 15 posts - 1,051 through 1,065 (of 2,486 total)