Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Do 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/
Shamim HasanKeymasterPlugin customization is not included in paid version. after that also i try to provide code if it needs small code snippet.
But to achieve your required functionality it not only needs template editing but backed code as well.If you know php you can follow following steps
1. Editview-message-content.php
template file to show select field of users with search capability.
2. Add an admin ajax hook or backend function to handle selected user
3. Set that user as participant of that message usinginsert_participants
methodShamim HasanKeymasterCan you please go to Dashboard > Front End PM PRO > Settings > Emails > Email Sending Interval and change to any other value and save changes. Wait selected amount of time and check again if email start sending?
Shamim HasanKeymasterPlease contact using https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterWill it add automatically to the replies or you will add it manually?
If automatically add to all replies, i can give you code and you can add in your website.
If you need to add it manually (may be a select field with all users from where you can select one) then it will need custom code which may need fees.Shamim HasanKeymasterDid you already added CC field there (I see in your previous message)? If yes, how you added that?
If no, do you want to give user an option to add cc there? Or you want to add automatically? If automatically, what is there user id which you want to add as a CC for all messages? So that i can write some code and give that to you which will automatically add that user to all messages for you.
Shamim HasanKeymasterCan you please give me screenshot with marking from where you set “CC” field?
-
AuthorPosts