Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
URL will not work.
Create an email where fep-email-piping.php file is. Then set this email as piping email in Front End PM PRO > Settings > Emails. It does not have to be your main domain. Or you can forward your main domain email(Gsuite) to your temporary email (email where fep-email-piping.php file is) then from this email forward to fep-email-piping.php.Shamim HasanKeymasterYou have setup piping address as URL but it will be PATH. Something like home/xxxx/public_html/wp-content/plugins/front-end-pm-pro/pro/fep-email-parser/fep-email-piping.php
Shamim HasanKeymasterCan you give me access to your website so that i can try?
If yes, please send credentials using https://www.shamimsplugins.com/sensitive-information/ (give me website admin and FTP access, in FTP you can give me permission only content directory)Shamim HasanKeymasterFor no-2, add yourself to every group and add following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_get_option', function( $value, $option ){ if( 'can-send-to-group' == $option ){ if( fep_is_user_admin() ){ $value = true; } else { $value = false; } } return $value; }, 10, 2 );
This will allow only admins to send message to group.
For no-1: Is there any JavaScript error in your browser console?
September 28, 2018 at 8:36 am in reply to: User Nav Redirects Instead of Showing Messages & Announcements #17761Shamim HasanKeymasterShamim HasanKeymasterAdd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_get_message_with_replies', function( $args ){ $args['order'] = 'DESC'; return $args; });
To show form on top, You have to edit
view-message.php
template. Instruction in https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/change-templates/Shamim HasanKeymasterplease check your server error log and see if there is any error.
Also as you said there is an error in your cron events overview, can you please check from which plugin and/or theme that error came from? Can you deactivate that then try?
If still not working please deactivate all plugins except this and change theme to unmodified default theme then try. If require you can activate cron plugin to manually run cron. If works then change your theme to your current theme and activate plugins one by one and try. If you found any conflict let me know.Also go to Front End PM PRO > All Announcements and see “Email Pending” column to see if that showing pending emails.
Shamim HasanKeymasterYes.
If you want to join table, i prefer you usePREFIX_fep_messages
table.Shamim HasanKeymasterconversation already have id. You can use
fep_get_the_id()
inside loop to get id of the conversation.Shamim HasanKeymasterdid you change Front End PM PRO > Settings > Emails > Sending Interval to 5 and save changes?
Can you install any cron plugin and run “fep_eb_ann_email_interval_event” cron manually?Shamim HasanKeymasterAre you getting message notification emails?
Announcement emails are sent via cron. So it your website cannot run cron then it will not work. Make sure you have visitor on your website.
Please go to Front End PM PRO > Settings > Emails and see all fields are filled. also check if “Send email to all users when a new announcement is published?” is checked.
Also change Front End PM PRO > Settings > Emails > Sending Interval to 5 and save changes. it will try every after 5 minutes. Then after 5 minutes refresh your page and see if emails sending. You can see how many email pending by go to Front End PM PRO > All Announcements.If still not works please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/email-notification-not-receiving/
Let me know.
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 ( 'add_announcement' !== $cap ) { return $can; } if ( array_intersect( wp_get_current_user()->roles, [ 'administrator', 'editor' ] ) ) { return true; } return false; }, 10, 3);
Change roles as you like. You can add more roles separated by comma.
Shamim HasanKeymasterSorry [NAME REMOVED], I have no experience with that.
September 21, 2018 at 6:27 pm in reply to: Great Error: I can´t activate "send message" for users #17597Shamim HasanKeymasterWhich version you are using?
Did it worked before?
Do you have any custom code for this plugin?
Can you change “Who can send replies”?September 19, 2018 at 9:14 pm in reply to: Your Front End PM PRO is not active for this URL. Please visit your account page #17565Shamim HasanKeymasterDid you tried to erase the code and save settings then re enter and again save settings after added your site url in account page of this website? If not please try it first.
If above not working, please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/license-keys-not-activating/
Let me know.
-
AuthorPosts