Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Click Update from source then save. Then try to create your language file.
Let me know.
May 5, 2019 at 2:33 pm in reply to: Can't reply to a message after it is deleted by other user. #24185Shamim HasanKeymasterThank you again.
It seems a good opinion. I will try to add a settings so that users can reply deleted messages.May 5, 2019 at 11:23 am in reply to: Can't reply to a message after it is deleted by other user. #24165Shamim HasanKeymasterHi again,
User feedback in No.1 priority to develop this plugin. This feature was already there (partially) where user could reply a message which was deleted by other user. It made so many confusion between users, where a user deleted a message but after another user reply, that message shown again.So after user feedback i removed that reply option after one user delete a message.
So if i was wrong and have enough user feedback to include this feature again, I will again include this feature.
Best Regards
ShamimMay 3, 2019 at 8:04 pm in reply to: A list of user profile photos with big empty space on the side #24127Shamim HasanKeymasterYou can go to Front End PM PRO > Settings > General > Messages per page and reduce number there. It will show less profile photos. So empty space will be less or none.
Or you can add
add_filter( 'fep_filter_hide_message_initially_if_read', '__return_false' );
in your theme’s functions.php. It will show message in right side. So empty space will be less or none.May 3, 2019 at 6:39 pm in reply to: A list of user profile photos with big empty space on the side #24121Shamim HasanKeymasterCan you please give me screenshot of that page?
May 2, 2019 at 8:20 pm in reply to: Can't reply to a message after it is deleted by other user. #24101Shamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_message_table_bulk_actions', function( $actions ){ unset( $actions['delete'] ); return $actions; });
This will remove delete option.
If you want your user can send reply even that is deleted also that is possible but need to be custom coded.
Shamim HasanKeymasterYes.
Please go to Dashboard > Pages > All Pages
Mouseover your this page title and click “Quick Edit” Then change Slug to whatever you like eg. messages. Then click Update.Shamim HasanKeymasterHow it is currently showing?
April 30, 2019 at 9:43 pm in reply to: Can't reply to a message after it is deleted by other user. #24008Shamim HasanKeymasterMay be you can use
fep_message_table_bulk_actions
hook to remove delete option. That way there will be no option to delete message.If you want that your user get replies if they delete also that will be needed to custom code.
Shamim HasanKeymasterThere is no direct way to add this. You can follow https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-custom-form/
Or you can use any supported contact form (eg. Contact Form 7) to create your form. To implement in Contact Form 7 follow https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-contact-form-7/
Shamim HasanKeymasterCustomization will not invalidate license key. Just be sure you do not change license check function.
Please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/license-keys-not-activating/
Shamim HasanKeymasterWhich version or reCaptcha you are using?
If you are using v2 “I’m not a robot” captcha please go to Settings > Advanced noCaptcha & invisible Captcha > SizeShamim HasanKeymasterYour theme was adding extra div in that area. This is very unusual.
I have changed 2 lines of code in class-fep-pro-to.php line 392,393Please check now. You can use page builder again to build message page if you want.
I will test more. If everything working then i will modify this code in plugin next version to address this type of theme.
Shamim HasanKeymasterWhich version of this plugin you are using?
What is the key of your user’s mobile number? Where and how did you used code which i provided? Please give me full changes what you have done so that i can correct you is possible.This plugin is highly customizable. So i suggest not to edit this plugin code. Use hooks instead.
April 23, 2019 at 7:19 pm in reply to: Enter Button Not Working When Trying to Send a Message #23719Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php
add_action( 'fep_after_form_fields', function( $where, $errors, $fields ){ if( in_array( $where, [ 'newmessage', 'reply' ] ) ) { ?> <script type="text/javascript"> document.addEventListener("keyup", function(event) { // Number 13 is the "Enter" key on the keyboard if (event.keyCode === 13) { // Cancel the default action, if needed event.preventDefault(); document.querySelector('.fep-form').submit(); } }); </script> <?php } }, 10, 3);
-
AuthorPosts