Shamim Hasan

Forum Replies Created

Viewing 15 posts - 721 through 735 (of 2,487 total)
  • Author
    Posts
  • in reply to: Deactivation failed #37303
    Shamim Hasan
    Keymaster
    in reply to: WooCommerce ajax reload / Message titles #37301
    Shamim Hasan
    Keymaster

    1. Message sidebar is too narrow to show full subject, We may show couple of words
    2. We can make that happen, but it doesn’t work well with wp editor. So you will have to use textarea editor as message editor.

    If both are ok you can contact through https://www.shamimsplugins.com/hire/

    in reply to: WooCommerce ajax reload / Message titles #37214
    Shamim Hasan
    Keymaster

    I have added 2 new filter in your child theme’s functions.php.
    1. One to redirect to woocommerce dashboard custom tab when click new message or messagebox

    add_filter( 'fep_query_url_without_esc_filter', function( $url, $args ){
    	return add_query_arg( $args, wc_get_account_endpoint_url( 'premium-support' ) );
    }, 10, 2);
    

    2. Another to show only other person avatar (remove own avatar) from message sidebar

    add_filter( 'fep_remove_own_avatar_from_messagebox', '__return_true' );
    

    To show message title in sidebar, it needs custom work.

    in reply to: notification email #37151
    Shamim Hasan
    Keymaster

    Thank you.
    It seems you are using fep_enable_email_send hook to disable email sending. Please remove this filter and it will work.

    I have temporarily edited this plugin code to omit this check. But when you update this plugin, it will change to original state.

    So please remove this filter from your custom code.

    Let me know.

    in reply to: Threaded post? #37149
    Shamim Hasan
    Keymaster

    You need custom code to make it possible. If you know php i can guide.

    in reply to: Threaded post? #37117
    Shamim Hasan
    Keymaster

    If reply to same message, that will goes to same thread. If you or that user send a new message that will create a new thread.

    in reply to: notification email #37116
    Shamim Hasan
    Keymaster

    Is your website is in testing stage? Can you give me access to your website so that i can test? If yes, please create a test admin account and a ftp account which have access to this plugin and send using https://www.shamimsplugins.com/sensitive-information/

    in reply to: notification email #36978
    Shamim Hasan
    Keymaster
    in reply to: notification email #36926
    Shamim Hasan
    Keymaster

    By default it gets sent.

    To enable email notifications you do not need to use email piping or pop3. If you want your user can send reply directly to that email notifications from their email then you need email piping/pop3.

    in reply to: Icons on mobile #36867
    Shamim Hasan
    Keymaster

    Hi,
    mobile screen is too narrow to show icons. Currently we cannot show icons on mobile. But we are trying to improve this. May be in future we will find a way to show this.

    in reply to: Some Issues with Front End PM PRO – Please Help #36795
    Shamim Hasan
    Keymaster

    Hi
    1. Did you clear cache after changing setup?
    If you want to send message only to admin you can set your admins in Dashboard > Front End PM > Settings > Recipients and set 0 in “Max Recipients” field. It will remove the ability to send message user to user.

    2. If user subscriber delete any message, that message does not get deleted from database. You can still see that message. You can also reply that message if you want and that user also get that reply. Go to Dashboard > Front End PM > Settings > Security and check “Can user reply messages deleted by other user?”

    3. This plugin uses default wordpress options to show any media. If you want to show beyond that there is a easy hook to do that. Please use fep_filter_attachment_download_link hook to change that link to show directly the media instead of downloading. As this require custom code, if you need my assistance you can contact me through https://www.shamimsplugins.com/hire/

    4. https://www.shamimsplugins.com/support/topic/remove-setting/#post-12519

    5. message inbox/sent is determined my last sender of that message. So if someone else is last sender then that message will end up in your inbox and vice versa.

    Let me know.

    in reply to: Group message with password #36561
    Shamim Hasan
    Keymaster

    With the above code users will not see that group in settings page. So they cannot add them to that group. But if you add them to group (from back-end) then they can send message to that group.

    Please test and let me know.

    Shamim Hasan
    Keymaster

    For V3 google check so many things in background before determining bot or human. It may be browser cookie/cache or anything which making false positive.

    Also in v3 user do not have any option to prove that s/he is human.

    I prefer to use v2 so that if it fails user will have option to prove that s/he is human.

    in reply to: Group message with password #36555
    Shamim Hasan
    Keymaster

    add following code in your theme’s (child theme’s if you are using) functions.php

    add_filter( 'fep_get_all_groups', function( $groups ){
        if( ! fep_is_user_admin() ){
            unset( $groups[ 7930 ] );
        }
        return $groups;
    });
    

    This group will be hidden for users who are not admin.
    If you want to hide for other user also let me know their user id or role.

    Let me know.

    Shamim Hasan
    Keymaster

    Which plugin you are using to create user dashboard?
    When you go to message page see the address bar, that is your message page url. Add that url to account page.

    If you want to integrate full message system in account page you can use shortcode [front-end-pm]. Remember to add your account page as Front End PM Page in Dashboard > Front End PM PRO > Settings > General

Viewing 15 posts - 721 through 735 (of 2,487 total)