Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
July 5, 2023 at 12:56 pm in reply to: connect Front End PM Pro to alternate user database or table #45593Shamim HasanKeymaster
If 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 );Shamim HasanKeymasterYou can use https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_message_to/ which will redirect to message page with
toandsubjectfield per-populated.Shamim HasanKeymasterPlease enable debug (https://wordpress.org/documentation/article/debugging-in-wordpress/) then try to send message. It will show you more information about it.
Shamim HasanKeymasterYes possible. Please add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_email_piping_code_identifier', function( $identifier ){ return ['[#', ']']; });Shamim HasanKeymasterYou can use
fep_email_piping_code_identifierfilter hook to changeMESSAGE KEYpart. Change key length directly is not supported. I will try to add a filter in next version to change key length.Shamim HasanKeymasterCurrently we support role based bulk user import. Please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/
March 16, 2023 at 2:07 pm in reply to: Allow author user role to send announcement, but only to certain contacts #45379Shamim HasanKeymasterYou can follow https://www.shamimsplugins.com/support/topic/create-announcements/#post-26559
But will be tricky to only to the users he/she currently has messages with. This needs to be custom coded (if possible).
-
AuthorPosts