Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Please add following code in your theme’s (child theme’s if you are using) functions.php
add_action( 'init', function(){ global $wp_embed; remove_filter( 'fep_get_the_content', array( $wp_embed, 'run_shortcode' ), 8 ); remove_filter( 'fep_get_the_content', array( $wp_embed, 'autoembed'), 8 ); });
Let me know.
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_enable_email_send', '__return_false' );
This will disable email sending.
Then add a daily cron which will send email for all unread messages. This will be complicated and require custom code integration.
Shamim HasanKeymasterYes,
fep_action_message_after_send
runs one time per message.Shamim HasanKeymasterCurrent version is 11.3.1. You should update to latest version.
Shamim HasanKeymasterWhat is your setup for Front End PM PRO > Settings > General > Message view? If it is “Threaded” (which is by default), then that hook will be called once for a message (does not matter how many participants it has).
October 11, 2022 at 12:34 pm in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #44997Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php (Change
abc@example.com
with your actual email address.add_filter( 'fep_filter_before_email_send', function( $content ){ $content['headers']['bcc'] = 'Bcc: abc@example.com'; return $content; });
October 10, 2022 at 1:11 pm in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #44991Shamim HasanKeymasterOctober 9, 2022 at 12:42 am in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #44985Shamim HasanKeymasterYou can go to Dashboard > Front End PM PRO > All Messages to view all messages sent between users.
Shamim HasanKeymasterBy default shortcode is not parsed in message/announcement content. You can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_get_the_content', 'do_shortcode' );
Shamim HasanKeymasterMay be i did not understand your question properly. Can you please elaborate your question a little bit? Eg. what you are trying to achieve, what error you are facing? etc.
Shamim HasanKeymasterHi,
Very sorry for late reply.
You can change in Dashboard > Front End PM PRO > Settings > General > Editor TypeShamim HasanKeymaster1+2. You can setup email piping or POP3. See instruction in following
Email piping: https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/
POP3: https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/pop3-feature/3. Please see https://www.shamimsplugins.com/docs/front-end-pm/customization/user-name-pre-populate-new-message/
Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_announcement_table_bulk_actions', function( $actions ){ unset( $actions['delete'] ); return $actions; });
Shamim HasanKeymasterAs this is a wordpress plugin, focus is to use inside wordpress. We cannot handle announcement from webmail.
You do not need to add code if you do not want any customization. By default it works for administrator. If you set those 2 users as administrator then you will not need to add that code.
Shamim HasanKeymasterYou do not need to log into webmail and send email. Instead create 2 wp users using those 2 email address and follow https://www.shamimsplugins.com/docs/front-end-pm/getting-started/add-announcement/
-
AuthorPosts