Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
How you adding CC field for first message? If you add as participant in first message, it should automatically add to replies as well.
Shamim HasanKeymasterIt should be one time change.
Do you have any other plugin which may have cron change functionality?Shamim HasanKeymasterYou can access https://www.shamimsplugins.com/account/ and change your email/billing info.
Shamim HasanKeymasterRefund processed.
You can easily customize if you want. Eg. to set subject as select field Use following code
add_filter( 'fep_form_fields', function( $fields ){ if( isset( $fields['message_title'] ) ){ $fields['message_title']['type'] = 'select'; $fields['message_title']['options'] = [ 'Subject 1' => 'Subject title 1', 'Subject 2' => 'Subject title 2', ]; } return $fields; });Shamim HasanKeymasterCurrently it is showing individual messages.
Thank you for your nice suggestion. I will try to add a link to show full thread in future release.July 7, 2023 at 9:50 am in reply to: connect Front End PM Pro to alternate user database or table #45600Shamim HasanKeymasterThis plugin uses WP core functions to operate. So it is not possible right now.
July 5, 2023 at 12:56 pm in reply to: connect Front End PM Pro to alternate user database or table #45593Shamim HasanKeymasterIf you set custom table for user (https://developer.wordpress.org/apis/wp-config-php/#custom-user-and-usermeta-tables) then this plugin will automatically use those users.
Shamim HasanKeymasterPlease see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/announcement-email-queue/
Please check following
1. Cron is working in your website.
2. Change email interval in Front End PM PRO > Settings > Emails and wait that time (important)Shamim HasanKeymasterNo, pro version will continue functioning. But you will not receive update and support.
June 26, 2023 at 11:43 pm in reply to: Display the email address instead of the member’s username on the group page #45565Shamim HasanKeymasterPlease try following code
add_filter( 'fep_filter_rest_users_args', function( $args ){ $args['search_columns'][] = 'user_email'; return $args; });June 26, 2023 at 11:02 am in reply to: Display the email address instead of the member’s username on the group page #45557Shamim HasanKeymasterYou can try following code
add_filter( 'fep_filter_user_name', function( $name, $id ){ if( is_admin() ){ $name = fep_get_userdata( $id, 'user_email', 'id' ); } return $name; }, 10, 2 );June 23, 2023 at 11:21 am in reply to: Display the email address instead of the member’s username on the group page #45545Shamim HasanKeymasterPlease try this code
add_filter( 'fep_filter_user_name', function( $name, $id ){ if( is_admin() && ! wp_doing_ajax() ){ $name = fep_get_userdata( $id, 'user_email', 'id' ); } return $name; }, 10, 2 );Shamim HasanKeymasterYes possible. Please pass args with shortcode. Eg.
[front-end-pm fepaction="newmessage"]Shamim HasanKeymasterAre you suing any custom code to send message?
June 22, 2023 at 11:47 pm in reply to: Display the email address instead of the member’s username on the group page #45536Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_user_name', function( $name, $id ){ if( is_admin() && ! wp_doing_ajax() ){ $name = fep_get_userdata( $id, 'email', 'id' ); } return $name; }, 10, 2 ); -
AuthorPosts