Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,516 through 1,530 (of 2,477 total)
  • Author
    Posts
  • in reply to: Email piping issue #17794
    Shamim Hasan
    Keymaster

    it needs to be on same server (domain is not matter) where both domain have direct file access. You can even create a subdomain of your main domain for email address. Then you can pipe to fep-email-piping.php file

    in reply to: E-mails not sending when posting announcement #17789
    Shamim Hasan
    Keymaster

    I did not get it. Did it show successfully sent? Please sent again.

    in reply to: Email piping issue #17787
    Shamim Hasan
    Keymaster

    URL will not work.
    Create an email where fep-email-piping.php file is. Then set this email as piping email in Front End PM PRO > Settings > Emails. It does not have to be your main domain. Or you can forward your main domain email(Gsuite) to your temporary email (email where fep-email-piping.php file is) then from this email forward to fep-email-piping.php.

    in reply to: Email piping issue #17778
    Shamim Hasan
    Keymaster

    You have setup piping address as URL but it will be PATH. Something like home/xxxx/public_html/wp-content/plugins/front-end-pm-pro/pro/fep-email-parser/fep-email-piping.php

    in reply to: E-mails not sending when posting announcement #17776
    Shamim Hasan
    Keymaster

    Can you give me access to your website so that i can try?
    If yes, please send credentials using https://www.shamimsplugins.com/sensitive-information/ (give me website admin and FTP access, in FTP you can give me permission only content directory)

    in reply to: Issues after upgrading to Pro #17763
    Shamim Hasan
    Keymaster

    For no-2, add yourself to every group and add following code in your theme’s (child theme’s if any) functions.php

    add_filter( 'fep_get_option', function( $value, $option ){
        if( 'can-send-to-group' == $option ){
            if( fep_is_user_admin() ){
                $value = true;
            } else {
                $value = false;
            }
        }
        return $value;
    }, 10, 2 );
    

    This will allow only admins to send message to group.

    For no-1: Is there any JavaScript error in your browser console?

    in reply to: User Nav Redirects Instead of Showing Messages & Announcements #17761
    Shamim Hasan
    Keymaster
    in reply to: Anyway to sort the threads by descending date? #17736
    Shamim Hasan
    Keymaster

    Add following code in your theme’s (child theme’s if any) functions.php

    add_filter( 'fep_filter_get_message_with_replies', function( $args ){
        $args['order'] = 'DESC';
        return $args;
    });
    

    To show form on top, You have to edit view-message.php template. Instruction in https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/change-templates/

    in reply to: E-mails not sending when posting announcement #17708
    Shamim Hasan
    Keymaster

    please check your server error log and see if there is any error.
    Also as you said there is an error in your cron events overview, can you please check from which plugin and/or theme that error came from? Can you deactivate that then try?
    If still not working please deactivate all plugins except this and change theme to unmodified default theme then try. If require you can activate cron plugin to manually run cron. If works then change your theme to your current theme and activate plugins one by one and try. If you found any conflict let me know.

    Also go to Front End PM PRO > All Announcements and see “Email Pending” column to see if that showing pending emails.

    in reply to: Give each conversation an ID #17692
    Shamim Hasan
    Keymaster

    Yes.
    If you want to join table, i prefer you use PREFIX_fep_messages table.

    in reply to: Give each conversation an ID #17687
    Shamim Hasan
    Keymaster

    conversation already have id. You can use fep_get_the_id() inside loop to get id of the conversation.

    in reply to: E-mails not sending when posting announcement #17661
    Shamim Hasan
    Keymaster

    did you change Front End PM PRO > Settings > Emails > Sending Interval to 5 and save changes?
    Can you install any cron plugin and run “fep_eb_ann_email_interval_event” cron manually?

    in reply to: E-mails not sending when posting announcement #17655
    Shamim Hasan
    Keymaster

    Are you getting message notification emails?
    Announcement emails are sent via cron. So it your website cannot run cron then it will not work. Make sure you have visitor on your website.
    Please go to Front End PM PRO > Settings > Emails and see all fields are filled. also check if “Send email to all users when a new announcement is published?” is checked.
    Also change Front End PM PRO > Settings > Emails > Sending Interval to 5 and save changes. it will try every after 5 minutes. Then after 5 minutes refresh your page and see if emails sending. You can see how many email pending by go to Front End PM PRO > All Announcements.

    If still not works please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/email-notification-not-receiving/

    Let me know.

    in reply to: Letting non-admin users create announcements #17625
    Shamim Hasan
    Keymaster

    Add following code in your theme’s (child theme’s if any) functions.php

    add_filter( 'fep_current_user_can', function( $can, $cap, $id ){
    	if ( 'add_announcement' !== $cap ) {
    		return $can;
    	}
    	if ( array_intersect( wp_get_current_user()->roles, [ 'administrator', 'editor' ] ) ) {
    		return true;
    	}
    	return false;
    }, 10, 3);
    

    Change roles as you like. You can add more roles separated by comma.

    in reply to: Visual composer with announcements #17612
    Shamim Hasan
    Keymaster

    Sorry [NAME REMOVED], I have no experience with that.

Viewing 15 posts - 1,516 through 1,530 (of 2,477 total)