Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
I am really sorry, I did not receive your email (still now).
This is very strange and i can not think how it can be possible that only one role work and more than one role not working as it saves as array and array elements can be any number.
Please let me know your WordPress version. Also please send me screenshot of Dashboard > Front End PM PRO > Settings > Emails page.
Also please Note: Announcement emails send by wp cron, so if cron can not run (eg. no visitor in your website ), no emails will be sent.
Shamim HasanKeymasterPlease go to Dashboard > Settings > General and see is timezone setup correct. Also please see others time in your website is correct, eg. post publish date etc.
Shamim HasanKeymasterPlease go to Dashboard > Front End PM PRO > Recipient > Message Type and change to “Same Message”
It will solve the issue.
Seems there is a bug and i have already corrected that. Next version this will be corrected. Then you will be able to set anything.
As you are not using “Multiple recipient” feature, this settings will not affect you and you will not find any difference.Shamim HasanKeymasterPlease let me know setup of Dashboard > Front End PM PRO > Settings > Message view.
Also please give me screenshot of “Recipient” and “security” tab page.Shamim HasanKeymasterPlease go to Dashboard > Front End PM PRO > Settings > Emails and see if all fields are filled (eg. New Message Subject, New Message Content etc )
Let me know.
September 19, 2017 at 2:04 am in reply to: How Do I Remove MESSAGE KEY infro from subject linke #6569Shamim HasanKeymasterIt is used to determine its parent message for Email piping. You can go to Dashboard > Front End PM PRO > Settings > Emails and unchecked “Enable email piping?” to remove that. Remember it will also Disable Email piping feature.
Shamim HasanKeymasterAs you have added administrator role later, You can add announcement normally.
Let me know.Shamim HasanKeymasterShowing email sent feature is added in current version (5.1) first. So it may need some more work. Yes, it shows that all emails are sent if send email is disabled for announcement. I will try to find a way to show correctly or show that email sending was disabled.
I tested in my test website where i created an announcement and add “Administrator” role. And i see the announcement without any issue. Also investigate the code but nothing found that can restrict view of announcement.
Please check that your user role is same as what you selected when adding announcement.Shamim HasanKeymasterPlease use following
add_action('save_post', 'undelete_thread'); function undelete_thread($post_id) { $post = get_post($post_id); if ($post->post_type == 'fep_message' && $post->post_parent){ $participants = fep_get_participants( $post->ID ); foreach( $participants as $participant ) { delete_post_meta($post->post_parent,'_fep_delete_by_'. $participant ); } } }
Shamim HasanKeymasterYou can change
if ($post->post_type = 'fep_message'){
withif ($post->post_type == 'fep_message' && $post->post_parent){
This way it will not run unnecessarily for parent messageShamim HasanKeymasterYou can add
remove_action( 'fep_action_message_after_send', array( Fep_Emails::init(), 'save_send_email'), 20, 2 );
just before usingfep_send_message()
Shamim HasanKeymasterNext release i will try to add an option for this.
Shamim HasanKeymaster$admins = fep_get_option('oa_admins', array());
will give you array of admins.Shamim HasanKeymasterAre you using any SMTP plugin or any other plugin which change wp_mail function? Your issue seems return false from wp_mail function all the time and it should not be. I will try to add a filter to bypass this check next version.
Shamim HasanKeymasterI have sent to 1000 users and it seems it sent to all users.
Can you please try again.
Also please debug on and try to see error log of your server if anything there regarding this.
Let me know. -
AuthorPosts