Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
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 HasanKeymaster
1. 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 );
Shamim HasanKeymasterMay you please download latest version and install from https://www.shamimsplugins.com/account/ ?
Also you can get your latest license from that account page as well (it it trimmed to 32 characters).Let me know.
October 19, 2020 at 10:05 am in reply to: Scrolling issue after sending “message” (when long messages opened in feed) #41434Shamim HasanKeymasterTo remove toggle feature entirely you can add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_message_toggle_feature', '__return_false' );
October 18, 2020 at 7:40 pm in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41428Shamim HasanKeymasterI need access so that i can install/uninstall plugin or edit code in this plugin files. That means i need admin access to your website and SFTP/FTP access to this plugin folder.
As i am still not sure where the issue is, so i cannot tell how much time it can take. But i can give your site 30 minutes time. -
AuthorPosts