Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 2,495 total)
  • Author
    Posts
  • in reply to: Publish Admin Message Directly #14290
    Shamim Hasan
    Keymaster

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

    add_filter( 'fep_filter_message_before_send', function( $message ){
        if( fep_is_user_admin() ){
            $message['post_status'] = 'publish';
        }
        return $message;
    });
    in reply to: Change message url in email sent to user #14281
    Shamim Hasan
    Keymaster

    1. if you hide front-end-pm-page then your link will be invalid.
    2. You can edit message content in Front End PM PRO > Settings > Emails and create a button instead.

    in reply to: Sound #14267
    Shamim Hasan
    Keymaster

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

    add_filter( 'fep_filter_notification_script_localize', function( $localize ){
        $localize['sound_url'] = 'your_sound_url.mp3';
        return $localize;
    });

    Upload your sound file in your website and change your_sound_url.mp3 with your sound file url.

    in reply to: Email not getting delivered #14249
    Shamim Hasan
    Keymaster

    Did you change any code in plugin or use any custom code for this plugin?

    From which email you are receiving normal emails (eg register, lost password email)? Please set that email address in Dashboard > Front End PM PRO > Settings > Emails > From Email and test.

    in reply to: Email not getting delivered #14230
    Shamim Hasan
    Keymaster

    in front-end, from where you send messages, each user has his own settings page, there.

    From which email you are receiving normal emails (eg register, lost password email)? Please set that email address in “From Email” in this plugin settings and test.

    in reply to: Email not getting delivered #14223
    Shamim Hasan
    Keymaster

    Nothing is changed in this version regarding email. So it should not have any issue for this update.
    Are you using same domain email in “From Email”? are you using any SMTP plugin? in front end Settings page is “Email me when I get new messages?” checked?

    in reply to: Email not getting delivered #14217
    Shamim Hasan
    Keymaster

    From which version you have updated?
    I see your previous email problem is solved in https://www.shamimsplugins.com/support/topic/email/. What did you changed that time?
    Also please check is normal email sent from your website? eg register, lost password email?
    Please go to Dashboard > Front End PM PRO > Settings > Emails and see if all fields are filled.

    in reply to: admin only can see message body #14209
    Shamim Hasan
    Keymaster

    For your message notification if you want admin only can see body message not subscriber then that need to be custom build.

    For email piping please follow step by step in https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/email-piping/
    If not work please create another topic for email piping.

    in reply to: I can't use mergetag in the new message form shortcode #14173
    Shamim Hasan
    Keymaster

    Where you are using this mergetag but not parsing? can you please give me a screenshot?

    in reply to: admin only can see message body #14171
    Shamim Hasan
    Keymaster

    1. You mean in email? You can go to Dashboard > Front End PM PRO > Settings > Emails and set which content will be sent to email.
    2. No

    in reply to: request invoice #14129
    Shamim Hasan
    Keymaster

    Invoice is already sent to your email address.
    Thank you for your purchase.

    in reply to: Change upload attachment action #14115
    Shamim Hasan
    Keymaster

    Attachment is attached to message by message id. So before sending message we can not know message id.
    Why you need upload attachment before sending message? Attachment check (size, amount etc) is done before sending message. So if that check fail that will automatically fail message sending.

    Also it seems you are not using latest version of this plugin. It is always recommended to use latest version.

    in reply to: Forward Email #14086
    Shamim Hasan
    Keymaster

    Currently there is no direct way. You can copy paste message to forward.

    Shamim Hasan
    Keymaster

    You cannot have multiple function as same. You can change function name OR use anonymous function.
    Add following code instead

    add_filter( 'fep_form_fields',function( $fields ){
        unset( $fields['message_title']['minlength'] );
        return $fields;
    });
    
    Shamim Hasan
    Keymaster

    <a href="http://YOUR_MESSAGE_PAGE_URL/?fepaction=newmessage&message_title=HERE_IS_YOUR_SUBJECT&fep_mr_to=1,2">Message</a>

Viewing 15 posts - 1,801 through 1,815 (of 2,495 total)