Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
You are right, This plugin search for “Subject” and every emails should have one (no matter which language it is ). I see your source email and there is “Subject”. So that should not have any issue.
Can you save that email source code in a text format and send to me so that i can use to investigate here? This forum encode some code and make it unusable.December 14, 2018 at 1:04 am in reply to: Piping mailbox – not deleting replies once they have been forwarded. #19731Shamim HasanKeymasterFor email piping setup, this plugin never access your email account. Your email account forward an email copy to this plugin, this plugins process that email, so this plugin never knows how many emails are in your email account, and never delete any email.
If you want to delete emails after process, then use POP3 ( Go to Front End PM PRO > Settings > Emails ). Remember to delete all your emails first from your email account then setup POP3.
December 14, 2018 at 12:59 am in reply to: how to determine what users blocked and admin override (whitelist not working) #19729Shamim HasanKeymasterWhitelist does not work if that user is blocked. In next version, if user is whitelisted then they will be able to send reply if they are blocked also.
Shamim HasanKeymasterHi @krootz
I accessed your website. It seems your theme (or one of your plugin) disable form buttons. Please change your theme and then try.
Please let me know.December 14, 2018 at 12:32 am in reply to: How to deny upgrade: 'Front End PM PRO needs to database update' #19725Shamim HasanKeymasterSorry for late reply.
i will be available from now.
about my solution to update to latest version i think you missed no.2 (Use a mysql backup copy where you never updated to latest version. If you update to 10.x version then role back, it may fail update. So ensure you never updater to 10.x version in that backup.) because before 10.x version some tables you mentioned never used.Please confirm if you have ever updated to latest version in that backup. If you updated to 10.x version then again role back to 8.x version then there need some extra step and code. I will give you. Please let me know.
Please check
FEP_admin_options
andfep_db_version
option in db (do not change manually). in FEP_admin_options you will get version in serialized array. Please let me know both.November 30, 2018 at 4:48 am in reply to: How to deny upgrade: 'Front End PM PRO needs to database update' #19401Shamim HasanKeymasterAs you are mysql and sql command familiar, that will help a lot.
1. Backup your database first.
2. Use a mysql backup copy where you never updated to latest version. If you update to 10.x version then role back, it may fail update. So ensure you never updater to 10.x version in that backup.
3. Go to db and delete any table starting withfep_
.
4. Then update to latest version, latest version is 10.1.4
5. Then click “Proceed” when shows database update notice. Then start update. Wait until it finish.Let me know.
November 30, 2018 at 4:23 am in reply to: How to deny upgrade: 'Front End PM PRO needs to database update' #19396Shamim HasanKeymasterIf you want to use latest version i can assist you, latest version is so much improved in performance.
If you still want to use 8.4 follow following
only admin have 0 message issue? try sending a test message to any user then see if that solve your issue. let me know.Shamim HasanKeymasterNovember 30, 2018 at 3:06 am in reply to: How to deny upgrade: 'Front End PM PRO needs to database update' #19376Shamim HasanKeymasterIt is always recommend to use latest version.
Which version you want to use? I will explain you accordingly.Shamim HasanKeymasterYes, it is possible.
add following code in your theme’s (child theme’s if any) functions.phpadd_filter( 'fep_filter_before_email_send', function( $content, $mgs ){ $content['headers']['reply-to'] = 'Reply-To: ' . fep_get_userdata( $mgs->mgs_author, 'user_email', 'id' ); return $content; }, 10, 2 );
Shamim HasanKeymasterYou can google it. Here is an example how you can achieve https://stackoverflow.com/a/5346855
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_show_which_name', function( $which ){ return 'first_name'; });
Shamim HasanKeymasterMay be i did not understand you question properly. You want to send emails to users in their preferred language?
You need some php knowledge for that. I can guide you if you have some knowledge in php.Did you set https://www.shamimsplugins.com/docs/front-end-pm/integration/multilingual/ for WPML?
Shamim HasanKeymasterShamim HasanKeymasteradd following code in your theme’s (child theme’s if using) functions.php
add_filter( 'fep_filter_to_roles_to_create_announcement', function( $roles ) { $access_roles = fep_get_option( 'userrole_access', array() ); $wp_roles = wp_roles()->roles; $roles = array(); foreach( $wp_roles as $role => $role_info ){ if ( in_array( $role, $access_roles ) ) { $roles[ $role ] = translate_user_role( $role_info['name'] ); } } return $roles; });
-
AuthorPosts