Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
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.Shamim HasanKeymasteri sent 2 emails in your email address. Please reply that email. I am waiting for your response.
Shamim HasanKeymasterThis was due to order by a non index field.
Shamim HasanKeymasterThis 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”?
Shamim HasanKeymasterPlease 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.
Shamim HasanKeymasterIf 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.Shamim HasanKeymasterPlease 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)Shamim HasanKeymasteris 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.
Shamim HasanKeymasteras 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.
July 3, 2018 at 6:38 pm in reply to: Suggestion to move error/message success box to top of screen #15484Shamim HasanKeymasterYou 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.
Shamim HasanKeymasterYou can use
fep_form_fields
filter to add your field. Thenfep_form_field_output_TYPE
action hook to output your field. Then usefep_action_message_after_send
to save that value in database. and last usefep_display_after_message
to display its value in message.Shamim HasanKeymasterI 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.
Shamim HasanKeymasterThis 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.
Shamim HasanKeymasteradd 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.
Shamim HasanKeymasterCan you send me your theme so that i can try?
-
AuthorPosts