Shamim Hasan

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 2,463 total)
  • Author
    Posts
  • in reply to: Strip HTML from {{message}} #45827
    Shamim Hasan
    Keymaster

    Do you want to strip only in email (which sent to email address after message sent) or in message as well (which shown in website)?

    in reply to: 504 error #45815
    Shamim Hasan
    Keymaster

    How many users do you have?
    This plugin makes a notification request to query new messages every 2 minutes by default. You can change this by using following code

    add_filter( 'fep_filter_ajax_notification_interval', function( $interval ){
        $interval = 5 * MINUTE_IN_SECONDS * 1000;
        return $interval;
    });
    

    After adding this code, it will make request every 5 minutes (you can change this to any number). Purge all cache and wait some time. Then check.

    in reply to: Wrong URL link when sending announcement #45813
    Shamim Hasan
    Keymaster

    This url is to that particular announcement, not for opening page.
    You can change email format in Dashboard > Front End PM PRO > Emails

    in reply to: Blocked access to the WP REST API #45810
    Shamim Hasan
    Keymaster

    Those are the settings. Do you have any caching setup? If yes, purge all caching.
    If your website is open in some browsers, this call will continue to make until they close the browser or navigate to another page.

    in reply to: Blocked access to the WP REST API #45808
    Shamim Hasan
    Keymaster

    This is just for real time notification and should not be blocked.

    You can disable notifications in Front End PM PRO > Settings > Misc

    in reply to: E-Mail Notification to Admin if Pending Messages #45805
    Shamim Hasan
    Keymaster

    You can send email to admin using following code. Change content as you like.

    add_action( 'fep_action_message_after_sent', function( $message_id, $message, $new_message ){
    	wp_mail('admin@example.com', 'New Message', 'New message waiting for approval' );
    }, 10, 3);
    
    in reply to: Nowfollow atribute on: fep_shortcode_message_to to #45804
    Shamim Hasan
    Keymaster

    Shortcode does not support nofollow argument.

    in reply to: E-Mail Notification to Admin if Pending Messages #45801
    Shamim Hasan
    Keymaster

    Is the message sent to Admin or any user?

    in reply to: Announcements stuck in “Pending” #45800
    Shamim Hasan
    Keymaster

    This should be done only one time max. But as in your case it needs to be done every time, it may have some conflict. Is it possible to get access to your website to debug? If yes, please send credentials using https://www.shamimsplugins.com/sensitive-information/

    in reply to: How can I include CC field in my reply message #45780
    Shamim Hasan
    Keymaster

    Plugin customization is not included in paid version. after that also i try to provide code if it needs small code snippet.
    But to achieve your required functionality it not only needs template editing but backed code as well.

    If you know php you can follow following steps
    1. Edit view-message-content.php template file to show select field of users with search capability.
    2. Add an admin ajax hook or backend function to handle selected user
    3. Set that user as participant of that message using insert_participants method

    in reply to: Announcements stuck in “Pending” #45778
    Shamim Hasan
    Keymaster

    Can you please go to Dashboard > Front End PM PRO > Settings > Emails > Email Sending Interval and change to any other value and save changes. Wait selected amount of time and check again if email start sending?

    in reply to: How can I include CC field in my reply message #45771
    Shamim Hasan
    Keymaster
    in reply to: How can I include CC field in my reply message #45756
    Shamim Hasan
    Keymaster

    Will it add automatically to the replies or you will add it manually?
    If automatically add to all replies, i can give you code and you can add in your website.
    If you need to add it manually (may be a select field with all users from where you can select one) then it will need custom code which may need fees.

    in reply to: How can I include CC field in my reply message #45750
    Shamim Hasan
    Keymaster

    Did you already added CC field there (I see in your previous message)? If yes, how you added that?

    If no, do you want to give user an option to add cc there? Or you want to add automatically? If automatically, what is there user id which you want to add as a CC for all messages? So that i can write some code and give that to you which will automatically add that user to all messages for you.

    in reply to: How can I include CC field in my reply message #45746
    Shamim Hasan
    Keymaster

    Can you please give me screenshot with marking from where you set “CC” field?

Viewing 15 posts - 31 through 45 (of 2,463 total)