Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Please contact using https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterWill it add automatically to the replies or you will add it manually?
If automatically add to all replies, i can give you code and you can add in your website.
If you need to add it manually (may be a select field with all users from where you can select one) then it will need custom code which may need fees.Shamim HasanKeymasterDid you already added CC field there (I see in your previous message)? If yes, how you added that?
If no, do you want to give user an option to add cc there? Or you want to add automatically? If automatically, what is there user id which you want to add as a CC for all messages? So that i can write some code and give that to you which will automatically add that user to all messages for you.
Shamim HasanKeymasterCan you please give me screenshot with marking from where you set “CC” field?
September 28, 2023 at 12:58 am in reply to: how do I prevent people from replying to FEP emails? #45738Shamim HasanKeymasterYou can do any of the following.
1. You can set any email address you want in Front End PM PRO > Settings > Email > From Email. So when user receive an email, they will receive from this email. You can set an auto reply in that email to notify users that they will need to send message in your website
2. You can set Email Piping (https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/) Or POP3 (https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/pop3-feature/) so that if user reply to any email, that will automatically send message in your website.
3. Disable email notification.
Shamim HasanKeymasterHow 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; });
-
AuthorPosts