Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
I have tested with my test server and it is working here. That means something in your website preventing it to function.
Can you create a test user account in your website for me so that i can access your website and test there?
If yes, send credentials using https://www.shamimsplugins.com/sensitive-information/Shamim HasanKeymasterThere is no easy way to do it. It needs custom code.
Shamim HasanKeymasterDo you remember what you changed during that time?
Do you use any caching plugin? If yes, please disable caching in message page.
Let me know.Shamim HasanKeymasterPlease check and let me know following
1. Did you click “Apply” after selecting delete?
2. Can you disable all other plugins and change theme to one of default theme and try? Then enable one by one.Shamim HasanKeymasterYou want to search messages by only sender name or receiver names as well?
Do you have knowledge in php?Shamim HasanKeymasterCurrently you will have to edit template to remove that line.
But i am trying to find a way to easily remove that text. May be later version you will get this option.Shamim HasanKeymasterI never tried with that form. All supported forms are listed in plugin page as well as plugin settings page.
For any other custom form you can see https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-custom-form/October 15, 2019 at 12:12 am in reply to: POP3 emails not deleted, results in hunderds of send e-mails #30153Shamim HasanKeymasterThis is a same line error which means you did not declare in any other places. Better approach will be to declare inside function_exists. eg.
if ( ! function_exists( 'my_simple_crypt' ) ) { function my_simple_crypt(){ } }
October 14, 2019 at 11:49 pm in reply to: POP3 emails not deleted, results in hunderds of send e-mails #30148Shamim HasanKeymasterI do not know how this error even possible. Did you declare this function inside another function?
You can wrap this function inside function_exists call so that this error never happen.
This error also can be issue for email not deleted, But as i cannot see full code, i cannot be sure. But any fatal error can create that issue. Please wrap that function inside function_exists and see if working.October 14, 2019 at 11:04 pm in reply to: POP3 emails not deleted, results in hunderds of send e-mails #30143Shamim HasanKeymastercan you send me the error you are getting?
October 14, 2019 at 9:36 pm in reply to: POP3 emails not deleted, results in hunderds of send e-mails #30135Shamim HasanKeymasterCan you reply a test message email with those pdf attached and see if that working?
Also please check your server error log if there any error there?October 14, 2019 at 7:53 pm in reply to: POP3 emails not deleted, results in hunderds of send e-mails #30129Shamim HasanKeymaster1. Normally how many message emails your website receive per minute?
2. was that happening for single message or multiple messages?
3. How much was the size of that message? any difference in that message with other messages?
4. It may possible that in 1 minute message process is not completed. Can you set as 5 minutes instead of 1 minute cron so that multiple imap connection is not open?Shamim HasanKeymasterif that class removed then if you click toggle button, it will toggle.
Shamim HasanKeymasterYou can make changes from this commit https://github.com/shamim2883/front-end-pm/commit/606a4b8bc1ea987721cf13c409f64cf46face71d
Then add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_sanitize_html_class', function( $classes ) { if ( fep_get_the_id() && ! fep_get_message_field( 'mgs_parent' ) ) { $classes = str_replace( [ 'fep-message-content', 'fep-hide-if-js' ], '', $classes ); } return $classes; });
Shamim HasanKeymasterYou can override
view-message-content.php
template to manually remove that class from parent message. Currently there is no direct hook to achieve this. Next version i will try to add hook to achieve this easily. -
AuthorPosts