Shamim Hasan

Forum Replies Created

Viewing 15 posts - 2,176 through 2,190 (of 2,484 total)
  • Author
    Posts
  • 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.

    in reply to: Insert Message from another application #6397
    Shamim Hasan
    Keymaster

    $admins = fep_get_option('oa_admins', array()); will give you array of admins.

    in reply to: Announcement sending email #6373
    Shamim Hasan
    Keymaster

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

    in reply to: Announcement #6370
    Shamim Hasan
    Keymaster

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

    in reply to: Announcement #6339
    Shamim Hasan
    Keymaster

    Why you use Free version when you have PRO version?
    Some server limit email sending within time. Free version send email at a time, so if server limit that then those email will not be sent.
    PRO version have a feature to queue your announcement emails. So that emails will be sent in your desire time with a small chunk. You can try use that feature.

    in reply to: Redirection of ads mails to private internal messaging #6331
    Shamim Hasan
    Keymaster

    Glad to hear that issue is solved and it is not this plugin issue.
    Let me know anytime if you need my assistance about Front End PM PRO.

    Regards
    Shamim

    Shamim Hasan
    Keymaster

    Nice suggestion.
    I will try to do this in next major version.
    If you can send some CSS for this you are welcome.

    Thanks

Viewing 15 posts - 2,176 through 2,190 (of 2,484 total)