Shamim Hasan

Forum Replies Created

Viewing 15 posts - 901 through 915 (of 2,464 total)
  • Author
    Posts
  • in reply to: No captcha showing but when you register it shows error #31765
    Shamim Hasan
    Keymaster

    Are you using default wordpress login/registration form or any plugin/custom code for your login/registration form? Can you please send me your website url?

    in reply to: Admin as a default recipient #31763
    Shamim Hasan
    Keymaster

    You want to make admin default recipient of all messages? eg. If user A send message to user B, admin will also be recipient of that message?
    Or,
    You want your user to send message directly to admin without writing admin name or checkbox? Eg. User type message subject and content and send. Message will go directly to admin?

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

    1. Then you will need to add that code conditionally. You can add following code in your theme’s functions.php

    add_action( 'wp_head', function () {
        if( !empty($_GET['fep_to']) ){
            echo '<style type="text/css">.fep-form-field-fep_pro_to {display: none;}</style>';
        }
    }, 99);
    

    2. You can follow https://www.shamimsplugins.com/support/topic/add-meta-data-fields-to-the-directory/#post-13499

    in reply to: Dokan Multi Vendor Plugin #31723
    Shamim Hasan
    Keymaster

    Which script you added for version 8.4.1?
    Some more scripts are added in latest version of the plugin, did you added all of them? You can see list of scripts in functions.php file of the plugin inside fep_enqueue_scripts function.

    Let me know.

    in reply to: Privacy #31663
    Shamim Hasan
    Keymaster

    It will delete all messages and replies made by him/her. If threaded view is selected for message view then all replies from other users will also be deleted for that message (has filter to change this).

    This is applicable only for privacy eraser request. It does not delete when account deleted.

    in reply to: revert to posts #31648
    Shamim Hasan
    Keymaster

    see fep_participants table. mgs_participant column is user ids of that message participants. Add this value in post meta. key _participants. Add meta with this same key, for each value of that message from fep_participants table.

    Let me know

    in reply to: Once the pro version is installed, I can delete the free #31631
    Shamim Hasan
    Keymaster

    Yes, you can delete free version.

    in reply to: revert to posts #31629
    Shamim Hasan
    Keymaster

    May you please let me know what is the problem you had with latest version? I may assist you to solve this problem. It is recommender to use latest version always.

    If you do not have backup then it is tricky to revert back to previous major version. It needs manual operation in database.

    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?

Viewing 15 posts - 901 through 915 (of 2,464 total)