Shamim Hasan

Forum Replies Created

Viewing 15 posts - 1,996 through 2,010 (of 2,477 total)
  • Author
    Posts
  • in reply to: Announcement Emails Not Sending #10619
    Shamim Hasan
    Keymaster

    is “Remove Data on Uninstall?” checked?
    You can delete plugin via ftp. that will be same effect.
    For announcement issue can you please change sending interval to 10 and the emails per interval to 10
    and save changes.
    Let me know.

    Shamim Hasan
    Keymaster

    Is it working correctly in your setup after this change?

    in reply to: New tab for all attachments #10575
    Shamim Hasan
    Keymaster

    It is possible but require custom code.
    If you need this feature badly contact via https://www.shamimsplugins.com/contact-us/ for quotation.

    in reply to: hyperlink all text on message notification #10556
    Shamim Hasan
    Keymaster

    “X messages” and “X announcements” are hyper linked. So when click “X messages” it will redirect you message box page, and same for announcements.

    To make full notification clickable add following code in your theme’s (Child theme’s if any) functions.php

    add_filter( 'fep_header_notification', function( $show ){
    	$show = '<div onclick="location.href=\'' . fep_query_url('messagebox') . '\';" style="cursor:pointer;">' . $show . '</div>';
    	return $show;
    });
    
    in reply to: dismiss new message notification #10535
    Shamim Hasan
    Keymaster

    You can add #fep-notification-bar button {display:none;} in Front End PM PRO > Settings > General > Custom CSS

    in reply to: Attachments when sending to multiple recipients #10530
    Shamim Hasan
    Keymaster

    Thank you for letting me know.
    I have already fixed that.
    Next version you will get it fixed.

    in reply to: dismiss new message notification #10525
    Shamim Hasan
    Keymaster

    Your website have some breaking script which breaking your website. Please see screenshot. Most of them come from Advanced Ads related plugins. So if you deactivate those plugins and clear cache, all working correctly.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Making message read-only #10503
    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( 'send_reply' == $cap && 123 == $id )
    	return false;
    	
    	return $can;
    }, 10, 3);
    

    Change 123 with your parent message id

    in reply to: Making message read-only #10499
    Shamim Hasan
    Keymaster

    You want this for only one message or all messages?

    in reply to: Send message button not working on new message #10478
    Shamim Hasan
    Keymaster

    I think 2 are different places. one output for shortcode and another output for main message page. For shortcode it is already filled with page title but main message page that is not happening. You can only hide shortcode message title and not main page message title using following code instead of #message_title{display:none;}
    .fep-form-shortcode-newmessage .fep-form-field-message_title{display:none;} (works in version 6.4 or later)

    Shamim Hasan
    Keymaster

    Please change $time = strtotime( $post->post_date_gmt ); to $time = get_post_time( 'G', true, $post, false ); and see if it working correctly.
    Let me know.

    in reply to: Email is not sending #10432
    Shamim Hasan
    Keymaster

    Are you asking about “From Email” and “Piping Email”?
    You can use same or different email address.

    in reply to: Send message button not working on new message #10429
    Shamim Hasan
    Keymaster

    Where is subject line of message form?
    Subject is required, it can not send message if subject line empty.

    in reply to: dismiss new message notification #10426
    Shamim Hasan
    Keymaster

    Can you give me access to your website so that i can try?

    in reply to: Can't Delete free plugin #10405
    Shamim Hasan
    Keymaster

    As you have PRO version, there is no need to keep FREE version.
    You can easily delete via FTP or file manager if you facing difficulty deleting by wordpress back-end.

Viewing 15 posts - 1,996 through 2,010 (of 2,477 total)