Shamim Hasan

Forum Replies Created

Viewing 15 posts - 931 through 945 (of 2,486 total)
  • Author
    Posts
  • in reply to: If any participant is Admin #31584
    Shamim Hasan
    Keymaster

    You can use like following ( use $message_id whose participants you want to check)

    $participants = fep_get_participants( $message_id );
    if( in_array( 1, $participants ) ){
    }
    
    in reply to: If any participant is Admin #31579
    Shamim Hasan
    Keymaster

    Admin means users with administrator role or set as admin in settings page of the plugin?
    How many admins do you have?

    in reply to: Hide To field in Messages #31577
    Shamim Hasan
    Keymaster

    1. May be i did not understand you properly, which “To” field you want to hide?
    2. We can show shop name, but if you want to search with that shop name then that needs some custom coding.

    in reply to: Announcements don`t work anymore #31521
    Shamim Hasan
    Keymaster

    We have improved performance of the plugin so much. We reduced code of the plugin.
    We have added all features in frontend including add anouncement. In this way we achieved reduction of some code.

    If announcement features do not work please let me know following
    1. Can you see “Add Announcement” button in front end? (eg. from where where you send message)
    2. Do you see any error when try to add announcement?

    in reply to: Add text in the footer of each message sent. #31486
    Shamim Hasan
    Keymaster

    Add

    $message['message_content'] .= "<p style=’font-size:11px’><i class=’fa fa-eye’ style=’color:gold’></i> This message was sent via: </font> <font color=’darkgreen’><b>MYSITE.com</b>.</font></p>";
    

    after phone numbers.

    Shamim Hasan
    Keymaster

    If you are logged in as admin, please see in front-end (from where you send message), There should be a new button as “New Announcement”.

    Let me know.

    in reply to: User registratioon #31327
    Shamim Hasan
    Keymaster

    Did you deactivated registration all together in your website?
    Is there any other plugin which provides registration feature in your website?

    in reply to: Contact Form 7 #31301
    Shamim Hasan
    Keymaster
    in reply to: Last wordpress update plugin not tested? #31300
    Shamim Hasan
    Keymaster

    I am testing with v5.3, so far it is working well.
    But it needs some more testing. I will update when testing completed.
    If you have staging/test website then you can update there and test.

    in reply to: Toggle Messages #31298
    Shamim Hasan
    Keymaster

    Sorry for late reply.
    You can add following code in your theme’s (child theme’s if you are using) functions.php

    add_filter( 'gettext', function( $translated_text, $text, $domain ){
        if ( 'front-end-pm' == $domain && 'Toggle Messages' == $text ){
            $translated_text = 'Expand';
        }
        return $translated_text;
    }, 20, 3 );
    
    in reply to: just upgraded my Pro license from v8.3 #31263
    Shamim Hasan
    Keymaster

    I am very sorry for late reply.
    There should be a button in your website admin area top notices that Front End PM PRO database needs an update. Please click proceed and start update. Depending on your number of messages it may take some time.

    in reply to: just upgraded my Pro license from v8.3 #31209
    Shamim Hasan
    Keymaster

    There are lots of changes. It is almost a new plugin now. Please see changelog bottom of https://www.shamimsplugins.com/products/front-end-pm-pro/

    It will be better if you can update and then work on new template files. Please backup full website (files and database) then update.

    in reply to: Suggestions for future versions #31207
    Shamim Hasan
    Keymaster

    Thank you for your nice suggestions. I will try to implement this in next versions.

    For no.2: you can add &per_page=50 in url. It will show that many rows in one page.

    in reply to: just upgraded my Pro license from v8.3 #31201
    Shamim Hasan
    Keymaster

    It depends on so many things.
    better you can update in your staging website, then test. if everything works then update in production website.

    Let me know if you need any assistance from me.

    in reply to: Message emails #31161
    Shamim Hasan
    Keymaster

    User can disable email notification if s/he wants from front-end Settings page.
    As admin, if you want to disable sending emails to any user you can do so. add following code in your theme’s (child theme’s if you are using) functions.php

    add_filter( 'fep_enable_email_send', '__return_false' );
    
Viewing 15 posts - 931 through 945 (of 2,486 total)