Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
You can go to Dashboard > Front End PM PRO > Settings > General to hide directory from users
October 12, 2021 at 12:51 am in reply to: Notification emails using fep_send_message function #43780Shamim HasanKeymasterIf you need to send notification email from fep, you can ask that plugin developer about that hook and let me know. I will try to give you some code changes.
Shamim HasanKeymasterin which hook this codes fire? this plugin’s email hook is added using
wp_loaded
hook. So your other plugin should use this hook or any later hookShamim HasanKeymasterNo, Notification email also should be sent.
Shamim HasanKeymasterYou want to send email later? Not when you send message?
How many users you have in recipients of that message?Shamim HasanKeymasterYou can use https://www.shamimsplugins.com/support/topic/question-wp-json-front-end-pm-v1-notification/#post-27140 directly. No changes in code required for 5 minutes
September 25, 2021 at 1:48 pm in reply to: HTML showing in form field subject when click on shortcode button / fep_shortcod #43724Shamim HasanKeymasterAs html is added in title which you do not want, can you add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_form_field_before_output', function( $field, $where ){ if( 'message_title' === $field['key'] ){ $field['posted-value'] = strip_tags( $field['posted-value'] ); } return $field; },10, 2);
Let me know.
September 24, 2021 at 11:29 pm in reply to: what happens when max count of user messages is reached? #43717Shamim HasanKeymasterThis plugin does not auto delete any message as those might have important data.
User has to delete message otherwise they will not receive any new message.Shamim HasanKeymasterIt depends on your site traffic. By default it makes a call every after 2 minutes which is enough. If you have very large traffic then you can increase that value. Remember that will also delay new message notification to show up
September 24, 2021 at 11:25 pm in reply to: HTML showing in form field subject when click on shortcode button / fep_shortcod #43714Shamim HasanKeymasterWhich shortcode you are using?
Shamim HasanKeymasterYou can follow https://www.shamimsplugins.com/support/topic/create-announcements/#post-26559 to allow other role users to send announcement.
Yes, announcements also send email notification.
Shamim HasanKeymasterFor this purpose you can use announcement feature.
September 23, 2021 at 10:55 am in reply to: Possible to check if current user and post author have exchanged messages? #43695Shamim HasanKeymasterNo, You will need to set this in server where current query is.
Shamim HasanKeymasterbbPress roles are not wordpress roles. So it doesn’t show here.
If you need custom role you can use user role editor plugin. Do not forget to set those as wordpress role.Shamim HasanKeymasterDeactivate license from old site and activate in new site. That will do.
-
AuthorPosts