Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
December 12, 2022 at 11:16 pm in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #45183Shamim HasanKeymaster
Hi again,
I do not see any easy path for your requirement. You can contact through https://www.shamimsplugins.com/hire/ if you like so that i can try to write some code to achieve this.December 9, 2022 at 12:13 am in reply to: How to add a bcc email id of an admin on every messages sent to recipient? #45170Shamim HasanKeymasterWe can send a copy to any email address ( sent you code in my previous reply), but cannot change user “to” email address
Shamim HasanKeymasterShamim HasanKeymasterCurrently you will have to modify code to achieve this. In future i will try to add this option.
Shamim HasanKeymasterPlease uncheck Front End PM PRO > Settings > General > Show Branding Footer
Shamim HasanKeymasterWhat information you want to show as checkbox and radio button?
You can create your own. Please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-beautify/
Shamim HasanKeymasterFor testing please go to Front End PM PRO > Settings > Recipient > Max recipients and set to 1.
Let me know.Shamim HasanKeymaster1. Which one is not working? Incoming emails or out going emails? Or both?
2. How many users you have in a single message?Also please try https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/email-notification-not-receiving/
Shamim HasanKeymasterCurrently 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.
-
AuthorPosts