Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,861 through 1,875 (of 2,493 total)
  • Author
    Posts
  • in reply to: Message & Announcement Formatting issue discovered #13349
    Shamim Hasan
    Keymaster

    You were correct in interpretation of the problem. I also did the same but could not reproduce this. in screenshot-2 your line breaks are stripped out but in my test i cannot reproduce this. This means may be some plugin and/or theme code is changing its behavior. Can you please disable all plugins except this and change theme to default theme and test?

    in reply to: Message & Announcement Formatting issue discovered #13339
    Shamim Hasan
    Keymaster

    I can not reproduce this.
    Please give me screenshot of your editor with message/announcement and resulting message/announcement after send. So that i can see what is changed and try to reproduce.

    in reply to: Trouble with CSS on View Messages screen #13336
    Shamim Hasan
    Keymaster

    Try following code

    .front-end-pm-form .fep-button {
        float: right;
    }
    
    in reply to: Hide attachment in front end #13319
    Shamim Hasan
    Keymaster

    I see that option is misleading. This will send email to all users from that selected role(s) only.
    So check that checkbox and try.
    Let me know.

    in reply to: Email Notifications being sent to Pending Members #13316
    Shamim Hasan
    Keymaster

    Try following code

    add_filter('fep_get_user_option', function( $value, $option, $default, $userid ){
        global $ultimatemember;
        if( ! $userid )
        $userid  = get_current_user_id();
    
        if( 'allow_ann' == $option && ! $ultimatemember->user()->is_approved( $userid ) ){
            $value = 0;
        }
        return $value;
    }, 10, 4);
    
    in reply to: Hide attachment in front end #13274
    Shamim Hasan
    Keymaster

    I see you unchecked “Send email?”. If you unchecked this, this will not send email when an announcement is published. Try checked and test.
    Are you using any SMTP plugin?

    in reply to: Hide attachment in front end #13266
    Shamim Hasan
    Keymaster

    Can your website send email? eg. registration, lost password email?
    If you send a message, is that notification email sent to your email?
    Can you please check and see all fields are filled and give me a screenshot of Front End PM PRO > Settings > Emails? Also please check “From Email” is same domain email of your website and email exists in your server. Some host may block email sending if email not exists.

    in reply to: Button color blue #13264
    Shamim Hasan
    Keymaster

    You want to change button text color but not working? can you please change to default theme and try? If works please give me a screenshot and color code of your color.

    in reply to: Button color blue #13252
    Shamim Hasan
    Keymaster

    Please go to Front End PM PRO > Settings > Appearance

    in reply to: Hide attachment in front end #13240
    Shamim Hasan
    Keymaster

    what is your php version?
    I have tested this code before giving you. So it should work. Did you add this code before closing tag (?>) of php?
    Can you please check your server error log and see what is the error there?

    in reply to: Hide attachment in front end #13224
    Shamim Hasan
    Keymaster

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

    add_action('wp_loaded', function(){
        if( class_exists( 'Fep_Attachment') )
        remove_action('fep_display_after_message', array( Fep_Attachment::init(), 'display_attachment') );
    }, 15 );
    
    in reply to: Hide attachment in front end #13214
    Shamim Hasan
    Keymaster

    You want to disable attachment feature completely so that users can not send attachments? or users can send attachments but not shows attachment links?

    in reply to: Invoice #13197
    Shamim Hasan
    Keymaster

    Invoice already sent to your email.

    in reply to: Can't send message to a user #13138
    Shamim Hasan
    Keymaster

    Do you have any custom code for this plugin in your website?
    Also tell him to again check his settings page for those 2 options ( “Allow others to send me messages?” and “Blocked Users”). By default only this 2 options can output this error.

    in reply to: Can't send message to a user #13127
    Shamim Hasan
    Keymaster

    Are you trying to send message from “New Message” page or from anywhere else?
    Can you type his name in “To” field and his name shows in suggestion?

Viewing 15 posts - 1,861 through 1,875 (of 2,493 total)