Shamim Hasan

Forum Replies Created

Viewing 15 posts - 2,131 through 2,145 (of 2,445 total)
  • Author
    Posts
  • in reply to: email notifications not sending #6809
    Shamim Hasan
    Keymaster

    Please go to All Announcements page and right column it says all emails are sent.
    How did you measure that emails are not sent?
    Did your host delaying your emails or can you use any email debugging plugin? I have a plugin for my own to debug email which make a file instead of sending actual email, if you want you can install that for debugging.

    Let me know.

    in reply to: email notifications not sending #6802
    Shamim Hasan
    Keymaster

    How much you have set? How many users you have?
    As you are dev team, can you follow me for some debugging (need some php knowledge) or Can i have access to your site admin and ftp?
    Let me know

    in reply to: email notifications not sending #6793
    Shamim Hasan
    Keymaster

    Please let me know wordpress version number.
    Please first change “Emails send per interval” to less number (eg. 5 ) then create a new announcement and let me know the result.

    in reply to: email notifications not sending #6783
    Shamim Hasan
    Keymaster

    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.

    in reply to: Admin Messages not being sent #6776
    Shamim Hasan
    Keymaster

    Please 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.

    in reply to: Admin Messages not being sent #6769
    Shamim Hasan
    Keymaster

    Please 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.

    in reply to: Admin Messages not being sent #6756
    Shamim Hasan
    Keymaster

    Please let me know setup of Dashboard > Front End PM PRO > Settings > Message view.
    Also please give me screenshot of “Recipient” and “security” tab page.

    in reply to: email notifications not sending #6735
    Shamim Hasan
    Keymaster

    Please 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.

    in reply to: How Do I Remove MESSAGE KEY infro from subject linke #6569
    Shamim Hasan
    Keymaster

    It 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.

    in reply to: Announcement Problems #6564
    Shamim Hasan
    Keymaster

    As you have added administrator role later, You can add announcement normally.
    Let me know.

    in reply to: Announcement Problems #6471
    Shamim Hasan
    Keymaster

    Showing 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.

    in reply to: Revive deleted string #6463
    Shamim Hasan
    Keymaster

    Please 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 );    
                }
            }
        } 
    
    in reply to: Revive deleted string #6459
    Shamim Hasan
    Keymaster

    You can change if ($post->post_type = 'fep_message'){ with if ($post->post_type == 'fep_message' && $post->post_parent){
    This way it will not run unnecessarily for parent message

    in reply to: Disable Email for One Message #6427
    Shamim Hasan
    Keymaster

    You can add remove_action( 'fep_action_message_after_send', array( Fep_Emails::init(), 'save_send_email'), 20, 2 ); just before using fep_send_message()

    in reply to: Toggle Messages #6424
    Shamim Hasan
    Keymaster

    Next release i will try to add an option for this.

Viewing 15 posts - 2,131 through 2,145 (of 2,445 total)