Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Sorry for late reply.
You can add following code in your theme’s (child theme’s if you are using) functions.phpadd_filter( 'gettext', function( $translated_text, $text, $domain ){ if ( 'front-end-pm' == $domain && 'Toggle Messages' == $text ){ $translated_text = 'Expand'; } return $translated_text; }, 20, 3 );
Shamim HasanKeymasterI am very sorry for late reply.
There should be a button in your website admin area top notices that Front End PM PRO database needs an update. Please click proceed and start update. Depending on your number of messages it may take some time.Shamim HasanKeymasterThere are lots of changes. It is almost a new plugin now. Please see changelog bottom of https://www.shamimsplugins.com/products/front-end-pm-pro/
It will be better if you can update and then work on new template files. Please backup full website (files and database) then update.
Shamim HasanKeymasterThank you for your nice suggestions. I will try to implement this in next versions.
For no.2: you can add &per_page=50 in url. It will show that many rows in one page.
Shamim HasanKeymasterIt depends on so many things.
better you can update in your staging website, then test. if everything works then update in production website.Let me know if you need any assistance from me.
Shamim HasanKeymasterUser can disable email notification if s/he wants from front-end Settings page.
As admin, if you want to disable sending emails to any user you can do so. add following code in your theme’s (child theme’s if you are using) functions.phpadd_filter( 'fep_enable_email_send', '__return_false' );
Shamim HasanKeymasterPlease follow https://www.shamimsplugins.com/docs/front-end-pm-pro/troubleshoot/license-keys-not-activating/
Let me know.
Also please note that, license does not restrict any functionality of the plugin. So user registration will not have any impact for license. Main purpose of the license is to deliver update and support.
Shamim HasanKeymasterShamim HasanKeymasterI did not tested this plugin with Flatsome theme. Also all supported forms are listed in plugin settings page as well as plugin description. Flatsome is not listed there.
You can send me that theme so that i can try if i can fix it.
Or, you can contact me through https://www.shamimsplugins.com/contact-us/ for a refund.Shamim HasanKeymasterI did not tested this plugin with Flatsome theme. It may have some compatible issue.
Shamim HasanKeymasterIt is possible but need custom coding.
You can contact through https://www.shamimsplugins.com/hire/Shamim HasanKeymasterDo you have php knowledge?
You can get an idea from class-fep-emails.php file of the plugin. Instead of email you will need to send sms.Shamim HasanKeymasterYou can use condition inside that function.
add_filter( 'fep_filter_message_before_send', function( $message ) { if ( get_user_meta( get_current_user_id(), 'privacytel', true ) != 'No') { // The @ symbol must be surrounded by character on both sides $message['message_content'] = preg_replace( '/[^@\s]*@[^@\s]*\.[^@\s]*/', '[EMAILNASCOSTA]', $message['message_content'] ); # for emails // Take any string that contains only numbers, spaces and dashes, // Can optionally have a + before it. $message['message_content'] = preg_replace( '/\+?[0-9\-]{5,}/', '[TELEFONONASCOSTO]', $message['message_content'] ); # for phone numbers } return $message; });
Shamim HasanKeymaster1. Did you change anything recently which fail it to work?
2. Is cron works in your website?
3. Which hosting you are using?
4. visit http://example.com/wp-cron.php?doing_wp_cron (change example with your domain) and wait couple minutes and refresh couple of times. Then visit announcements page and see any announcement emails are sent or not.Let me know.
November 2, 2019 at 12:30 am in reply to: Need to Update Message Title from Reply Message Meta #30710Shamim HasanKeymasterInstead of
fep_get_the_id()
use$message_id
-
AuthorPosts