Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
March 16, 2026 at 12:46 am in reply to: Question about username search for new message or directory #46052Shamim HasanKeymaster
You can use
fep_filter_rest_users_argsfilter hook to change where you want to search (for some examples https://www.shamimsplugins.com/support/search/fep_filter_rest_users_args/). Also you can usefep_filter_user_nameto change what name you want to show.This plugin is highly customizable. You can even use
fep_filter_rest_users_responseto query and response as you like. This will bypass plugin’s query fully.Shamim HasanKeymasterYou can go to your account page in https://www.shamimsplugins.com/account/ and update your website url
Shamim HasanKeymasterIt seems PRO version is not installed in your website.
Please download PRO version from https://www.shamimsplugins.com/account and install in your website.and to send message to author only you can set https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/only-admin/
Let me know if you have any more questions.
Shamim HasanKeymasterI have fresh installed the plugin in your website. Please make changes in the settings if required and use.
Let me know if you face any issue.
Thank you for being patient.
Shamim HasanKeymasterI have investigate your website. There should have 4 db tables related to this plugin where we store message and data for this plugin. But i do not find any table of that. Do you by any chance deleted those tables or taken any action which may have deleted these tables?
Do you have any backup when this was working?Shamim HasanKeymasterThank you and credential well received.
Do you have any staging website so that i can install the plugin and make some changes to debug? If not, I can do the same in production website, but in that case user may temporarily see some errors, is that ok?Shamim HasanKeymasterDo you have any staging server for this website?
Can you give me access to your staging website so that i can debug? If yes, please send admin and ftp/sftp credentials using https://www.shamimsplugins.com/sensitive-information/Shamim HasanKeymasterSorry i missed your message.
Which version of the plugin and wordpress you are using?
Did it happened after taking any action (Eg. updating wordpress) or without?
Are you getting any error message?Shamim HasanKeymasterAre you logged in as admin? By default only admin user can add announcement. If you want to allow any other role you can follow https://www.shamimsplugins.com/support/topic/create-announcements/#post-26559
Shamim HasanKeymasterThis call is used to show notification of message count in varies places. If you do not want to show that you can disable that in Dashboard > Front End PM PRO > Settings > Misc > Notification (uncheck Show notification, Show count)
Shamim HasanKeymasterThis plugin does not delete attachments automatically. Do you have any custom code for this plugin?
Shamim HasanKeymasterCan you confirm if you are using Free or PRO version of the plugin?
What is the version number?Shamim HasanKeymasterWhen sending to multiple recipients we have 2 settings
settings 1 (default): Same message: All users will receive same message and replies will be visible to all users
Settings 2: separate message: All users will receive separate message and replies will not be visible to any other users but sender.You can change this settings in Front End PM PRO > Settings > Recipients > Multiple Recipients
And For email, sender email is not visible to any users. Your email is sent from your systems email address. You can use any Email/SMTP plugin to change that.
Shamim HasanKeymasterCurrently we can send message to only one group at a time.
Shamim HasanKeymasterYou can use following code
add_filter("fep_get_user_option", function( $value, $option, $default, $userid, $is_default ){ if( $option == "allow_emails" && $userid === 123){ return false; } return $value; }, 10, 5);You can change user id value to chat you want.
-
AuthorPosts