Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,666 through 1,680 (of 2,460 total)
  • Author
    Posts
  • in reply to: Instructions for User to User messaging #15587
    Shamim Hasan
    Keymaster

    I forwarded to your new email.
    Please go to your profile (https://www.shamimsplugins.com/profile/) and check if your email address is correct with us. If not please update.

    in reply to: Instructions for User to User messaging #15581
    Shamim Hasan
    Keymaster

    i sent 2 emails in your email address. Please reply that email. I am waiting for your response.

    in reply to: Message box slow for certain users #15560
    Shamim Hasan
    Keymaster

    This was due to order by a non index field.

    in reply to: From name in admin #15546
    Shamim Hasan
    Keymaster

    This filter is added in version 7.4
    It is always recommended not to change any plugin code. there are lots of hooks in this plugin and you can change almost anything without touching plugin code.

    You want to change only your name in everywhere? or all authors name in “all messages”?

    in reply to: Message box slow for certain users #15544
    Shamim Hasan
    Keymaster

    Please add following code in your theme’s (child theme’s if any) functions.php

    add_action( 'fep_message_query_args', function( $args ){
    	unset( $args['orderby'], $args['meta_key'] );
    	return $args;
    });
    

    This will order your messages by created date, but query will be lot faster.

    Let me know.

    in reply to: Message box slow for certain users #15536
    Shamim Hasan
    Keymaster

    If test site have same issue (as you said 2 and 5 seconds) then i can work in that test site.

    Please send all information of that test sites including login url of that test site (not live site).
    I can not access with your provided information. It is showing “ERROR: Wrong login or password” with both of your admin and normal user credential.

    in reply to: Message box slow for certain users #15521
    Shamim Hasan
    Keymaster

    Please deactivate all plugins except this one and change theme to default theme. Then try. Let me know.
    If still have same problem please give me access to your website so that i can try to find the issue.

    Use https://www.shamimsplugins.com/sensitive-information/
    1. give me admin details which have no issue
    2. give me that user details which have issue
    3. give me ftp so that i can enter some debug code (you can create a ftp account which have only wp-content access)

    in reply to: Message box slow for certain users #15499
    Shamim Hasan
    Keymaster

    is there 2 plugins installed in your website? Please login via ftp/file manager and see in plugins directory if there is any plugin as front-end-pm-pro1. If yes, delete that one and see.

    Let me know.

    in reply to: Message box slow for certain users #15485
    Shamim Hasan
    Keymaster

    as you mentioned, your user B taking time more than Admin. Please try to compare admin and B users which query is taking more time for B. Also try to figure out is there any other factor is taking more time for user B than admin.

    Let me know.

    Shamim Hasan
    Keymaster

    You can add following code in your theme’s (child theme’s if any) functions.php

    add_action( 'fep_display_before_content', function(){
    	if( 'viewmessage' == $_GET['fepaction'] ){
    		echo fep_info_output();
    	}
    });
    

    It will show error/success message top of the messages also.

    in reply to: How to add custom field in new message page #15483
    Shamim Hasan
    Keymaster

    You can use fep_form_fields filter to add your field. Then fep_form_field_output_TYPE action hook to output your field. Then use fep_action_message_after_send to save that value in database. and last use fep_display_after_message to display its value in message.

    in reply to: Need help with setting email piping on Plesk #15481
    Shamim Hasan
    Keymaster

    I can assist you only if you have cPanel (it is already mentioned). As you do not have cPanel, you have to to do as your own, or get help from your hosting. You can ask them how to forward an email to a php script.

    in reply to: Message box slow for certain users #15450
    Shamim Hasan
    Keymaster

    This plugin should not have different impact for different user. Can you please install any query monitor plugin so that you can get which query taking more time (if any).

    Let me know.

    in reply to: There is no wanted page to add Shortcode #15445
    Shamim Hasan
    Keymaster

    add following code in your theme’s (child theme’s if any) functions.php

    add_filter( 'fep_query_url_without_esc_filter', function( $url, $args ){
    	return add_query_arg( $args, 'https://example.com/user-account/#mg-inbox');
    }, 10, 2);
    

    Let me know.

    in reply to: There is no wanted page to add Shortcode #15439
    Shamim Hasan
    Keymaster

    Can you send me your theme so that i can try?

Viewing 15 posts - 1,666 through 1,680 (of 2,460 total)