Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
You can try
if( fep_get_message_field( 'mgs_created' ) == fep_get_message_field( 'mgs_last_reply_time', fep_get_parent_id( fep_get_the_id() ) ) )
.Let me know.
October 28, 2020 at 11:43 am in reply to: Pop-Up msg when new message or announcement has arrived. #41552Shamim HasanKeymasterThere are 4 types of notification of a new message
1. Show a header bar
2. Show desktop notification
3. Sound when received a new message/announcement
4. EmailIf you want to add a pop-up window, that is also possible. But needs custom code. If you know js i can instruct you.
Shamim HasanKeymasterCan you please check if
UPT()->get_user_id()
return correct user id?
Also please add an else statement and see if that is echoing.Let me know.
October 27, 2020 at 10:45 am in reply to: I would like a refund, the program is not fit for purpose. I ordered 22nd Oct #41541Shamim HasanKeymaster1. You can send announcement to any number of users by clicking “Add Announcement” (only admin can do it)
2. You can set any number in max recipient which is more than 0. So set it eg. 100
3. You can set as follows to hide “To” field for subscriber role users. Go to Dashboard > Front End PM PRO > Settings > Security > Role to Role Block. Click “Add More” and select “From Role” to “Subscriber”, “To Role” to “All Roles” and “Block for” to “New Messaage”.If still not working as you expected, may be i did not understand you properly. You can knock me in skype @shamim_biplob so that i can provide you settings as you want.
October 27, 2020 at 1:42 am in reply to: Add a message when user has unchecked “Allow others to send me messages” #41535Shamim HasanKeymasterYou can also remove that settings if you want. Please follow https://www.shamimsplugins.com/support/topic/remove-setting/#post-12519
If you want to show message if that settings is unchecked Please use following code
if ( ! fep_get_user_option( 'allow_messages', 1 ) ) { echo 'Your message here'; }
October 26, 2020 at 12:22 pm in reply to: I would like a refund, the program is not fit for purpose. I ordered 22nd Oct #41526Shamim HasanKeymasterIt can be done easily. You can follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/only-admin/ and https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/role-to-role-block/
Summaries:
1. Set 1 (or more) in Front End PM PRO > Settings > Recipient > Max Recipient
2. Go to Dashboard > Front End PM PRO > Settings > Security > Role to Role Block. Click “Add More” and select “From Role” to “Subscriber”, “To Role” to “Subscriber” and “Block for” to “New Messaage”. Then save changes. Now no subscriber role users will be able to message to another subscriber role users.Let me know if you have any more question.
Shamim HasanKeymasterI have updated your previous license as well. Please try remove your license key and save changes and again input your license key and again save changes.
If still not working please give me screenshot of your settings full page of this plugin (hide keys).
Let me know.
October 24, 2020 at 10:51 am in reply to: I would like a refund, the program is not fit for purpose. I ordered 22nd Oct #41501Shamim HasanKeymasterOur billing department is informed. It may take 2-3 days to process.
May you please let me know what was your purpose but this plugin failed to do that? I may assist you to achieve that or we may add this feature in this plugin so that future user of this plugin can be benefited.Shamim HasanKeymasterTo use in announcement email you will need to add
announcement
inwhere
.
When usingfep_get_the_content
hook, if mgs_id is not available usefep_get_the_id()
Let me know.
Shamim HasanKeymasterShamim HasanKeymasterShamim HasanKeymasterHi again,
If you need help with custom code for your settings page you can contact me through https://www.shamimsplugins.com/hire/Shamim HasanKeymasterFirst remove group settings from user settings page using following code
add_filter( 'fep_form_fields', function( $fields ){ unset( $fields['fep_groups'] ); return $fields; }, 99);
Then show a form where you want your users can set their groups. You can get all groups using
Fep_Group_Message::init()->get_all_groups()
and user selected groups usingFep_Group_Message::init()->get_user_groups()
. When they submit their form determine if they added or removed any group and save value accordingly.
You can get all in action inclass-fep-group-message.php
file. See this file.Shamim HasanKeymasterIt is possible but will require custom code. You will need to show groups and give users functionality to change their groups.
If you know php i can guide you, or you can hire any developer, Or you can contact us using https://www.shamimsplugins.com/hire/October 20, 2020 at 6:40 pm in reply to: Don’t show users in New Message TO dropdown if messages not allowed by user #41453Shamim HasanKeymasterYou can add following code in your theme’s (child theme’s if you are using) functions.php. It will hide those users from autosuggestion who unchecked “Allow others to send me messages?” in their settings.
add_filter( 'fep_filter_rest_users_args', function( $args, $for, $q, $x ) { $args['meta_query'] = [ 'relation' => 'OR', [ 'key' => 'FEP_user_options', 'value' => 's:14:"allow_messages";s:1:"1";', 'compare' => 'LIKE', ], [ 'key' => 'FEP_user_options', 'compare' => 'NOT EXISTS', ] ]; return $args; }, 10, 4 );
-
AuthorPosts