Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,831 through 1,845 (of 2,460 total)
  • Author
    Posts
  • 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?

    in reply to: Batch add to a group #13117
    Shamim Hasan
    Keymaster

    Please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/
    After users imported just add {role}-subscriber (change subscriber with your desire user role) and all of the users of that role will be added to that group.

    in reply to: PHP 7 compatibility #13077
    Shamim Hasan
    Keymaster

    Thank you very much for letting me know.
    Next version we will fix these warnings.

    in reply to: Add FE PM Pro to Composer packages #13019
    Shamim Hasan
    Keymaster

    PRO version url lifespan is so short. Currently we cannot use it in composer.json.
    You don’t need to FTP all the time, you can access your website admin and update from there in one click.

Viewing 15 posts - 1,831 through 1,845 (of 2,460 total)