Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Can you please reduce “Emails sent per interval” to 10 (for testing) in Front End PM PRO > Settings > Emails. Sometimes in some host email delivery is slow and get timeout there.
January 21, 2024 at 7:00 pm in reply to: Invalid license. Please visit your account page and verify it. #45850Shamim HasanKeymasterCan you please check now? If still not working please let me know which version of the plugin you are using.
Shamim HasanKeymasterWhich version of the plugin you are using? Can you troubleshoot is there any conflict with other plugins by following https://wordpress.com/support/plugins/solve-problems-with-plugins/#health-check-amp-troubleshooting-plugin
Shamim HasanKeymasterCan you please install a cron plugin (eg. WP Crontrol) and check if cron is firing correctly?
Shamim HasanKeymasterDo you know php? if yes you can use
fep_directory_table_column_content_send_message
action hook to echo anything you want instead.Shamim HasanKeymasterCan you please install a cron plugin (eg. WP Crontrol) and check if cron is firing correctly?
Shamim HasanKeymasterDo you want to strip only in email (which sent to email address after message sent) or in message as well (which shown in website)?
Shamim HasanKeymasterHow many users do you have?
This plugin makes a notification request to query new messages every 2 minutes by default. You can change this by using following codeadd_filter( 'fep_filter_ajax_notification_interval', function( $interval ){ $interval = 5 * MINUTE_IN_SECONDS * 1000; return $interval; });
After adding this code, it will make request every 5 minutes (you can change this to any number). Purge all cache and wait some time. Then check.
Shamim HasanKeymasterThis url is to that particular announcement, not for opening page.
You can change email format in Dashboard > Front End PM PRO > EmailsShamim HasanKeymasterThose are the settings. Do you have any caching setup? If yes, purge all caching.
If your website is open in some browsers, this call will continue to make until they close the browser or navigate to another page.Shamim HasanKeymasterThis is just for real time notification and should not be blocked.
You can disable notifications in Front End PM PRO > Settings > Misc
Shamim HasanKeymasterYou can send email to admin using following code. Change content as you like.
add_action( 'fep_action_message_after_sent', function( $message_id, $message, $new_message ){ wp_mail('admin@example.com', 'New Message', 'New message waiting for approval' ); }, 10, 3);
Shamim HasanKeymasterShortcode does not support nofollow argument.
Shamim HasanKeymasterIs the message sent to Admin or any user?
Shamim HasanKeymasterThis should be done only one time max. But as in your case it needs to be done every time, it may have some conflict. Is it possible to get access to your website to debug? If yes, please send credentials using https://www.shamimsplugins.com/sensitive-information/
-
AuthorPosts