Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
it will parent id (first message id of the thread).
Shamim HasanKeymasterI see you already contacted me. But i think my replies never sent.
Can you please check your email address is correct in your account?Shamim HasanKeymasterThere are lots of hooks in this plugin and you can change almost anything without changing core plugin code.
It is not recommended to change plugin code.after that also if you need, this fix is located in class-fep-pro-to.php
Shamim HasanKeymastergo to Front End PM PRO > All Messages and find that message and change status to anything else other that publish.
February 5, 2018 at 11:16 pm in reply to: Autocomplete and Send Message from Directory not working #10680Shamim HasanKeymasteri do not have that plugin. If you can send me i can try to find a way if possible.
February 5, 2018 at 1:59 pm in reply to: Autocomplete and Send Message from Directory not working #10651Shamim HasanKeymasterPlease check Front End PM PRO > Settings > Security > Role to Role block, if your role is blocked.
Are you using any custom code for this plugin in your website?
Can you please deactivate all plugins and change theme to default theme and try?Shamim HasanKeymasterI see you marked this topic as “resolved”. if not resolved let me know.
Shamim HasanKeymasteris “Remove Data on Uninstall?” checked?
You can delete plugin via ftp. that will be same effect.
For announcement issue can you please change sending interval to 10 and the emails per interval to 10
and save changes.
Let me know.February 2, 2018 at 11:15 pm in reply to: How to automatically send messages to newly registered users? #10578Shamim HasanKeymasterIs it working correctly in your setup after this change?
Shamim HasanKeymasterIt is possible but require custom code.
If you need this feature badly contact via https://www.shamimsplugins.com/contact-us/ for quotation.Shamim HasanKeymaster“X messages” and “X announcements” are hyper linked. So when click “X messages” it will redirect you message box page, and same for announcements.
To make full notification clickable add following code in your theme’s (Child theme’s if any) functions.php
add_filter( 'fep_header_notification', function( $show ){ $show = '<div onclick="location.href=\'' . fep_query_url('messagebox') . '\';" style="cursor:pointer;">' . $show . '</div>'; return $show; });
Shamim HasanKeymasterYou can add
#fep-notification-bar button {display:none;}
in Front End PM PRO > Settings > General > Custom CSSShamim HasanKeymasterThank you for letting me know.
I have already fixed that.
Next version you will get it fixed.Shamim HasanKeymasterYour website have some breaking script which breaking your website. Please see screenshot. Most of them come from Advanced Ads related plugins. So if you deactivate those plugins and clear cache, all working correctly.
Attachments:You must be logged in to view attached files.Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_current_user_can', function( $can, $cap, $id ){ if( 'send_reply' == $cap && 123 == $id ) return false; return $can; }, 10, 3);
Change 123 with your parent message id
-
AuthorPosts