Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Currently it supports order by only messages fields. You can use
fep_filter_message_query_sql
to change order by directly.Shamim HasanKeymasterYou want to show subject line as dropdown or add a new dropdown field?
Shamim HasanKeymasterPlease try like following
add_filter( 'fep_message_query_args', function( $args ){ $args['meta_query'][] = [ 'key' => 'parent_currency', 'value' => 'LKR', 'compare' => '=' ]; return $args; });
Let me know.
Shamim HasanKeymasterPlease 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/
-
AuthorPosts