Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
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 HasanKeymaster
Our 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
announcementinwhere.
When usingfep_get_the_contenthook, 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.phpfile. 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.October 18, 2020 at 12:36 pm in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41420Shamim HasanKeymasterIf you find any plugin which working with that form, please let me know so that we can try to implement that in our plugin.
Also most hosting support one click staging site creation, you can contact your host if they support that.
If not you can give me access to your website so that i can try to find out where the issue is.
Shamim HasanKeymasterTo count as staging site your staging site have to follow at least one of the criteria of https://freemius.com/help/documentation/selling-with-freemius/license-utilization/
If you cannot follow above, you can deactivate license from staging site and active in main site.
October 17, 2020 at 9:00 am in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41411Shamim HasanKeymasterRegistration page captcha keys are not coming from this plugin, so it doesn’t matter how many times you change code in this plugins settings page. We need to find out from where this captcha keys coming from. Can you search in db if i tell you what to search?
Working on live website is risky. If you understand the risk and want to work on live site you can send admin details using https://www.shamimsplugins.com/sensitive-information/
October 16, 2020 at 10:42 pm in reply to: Website Owner Error: Invalid Key Type (occurs only in 1 of all registration for) #41403Shamim HasanKeymasterCan you create a staging site and give me access there so that i can try to find the issue?
-
AuthorPosts