Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_user_name', function( $name, $id ){ if ( $name ) { $name .= " ($id)"; } return $name; }, 10, 2);
Shamim HasanKeymasterCan you please follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/translate/#loco_translation ? It should make those string available to translate.
Shamim HasanKeymasterShamim HasanKeymasterPlease recheck if you unchecked “Read Receipt” in Front End PM PRO > Settings > Recipient on both websites
Shamim HasanKeymasterKeep unchecked that box.
Then add following line after add_action( ‘fep_display_after_announcement’, array( Fep_Read_Receipt::init(), ‘display_read_receipt’ ), 99 );add_action( 'fep_display_after_message', array( Fep_Read_Receipt::init(), 'display_read_receipt' ), 99 );
Shamim HasanKeymasterPlease tell your hosting support to forward emails to that php script
Shamim HasanKeymasterPlease go to Front End PM PRO > Settings > Recipient and uncheck “Can send to group”
Shamim HasanKeymasterDid you unchecked “Read Receipt” in Front End PM PRO > Settings > Recipient? If not, uncheck that
Shamim HasanKeymasterPlease remove first add_action( ‘fep_display_after_announcement’, array( Fep_Read_Receipt::init(), ‘display_read_receipt’ ), 99 ); line
Shamim HasanKeymasterI am sorry for very late reply.
Please see https://www.shamimsplugins.com/support/topic/unable-to-remove-maxlength-and-minlength-requirements/#post-14637Shamim HasanKeymasterYou can use
#fep-notification-bar
to add any css to notification bar.
Try adding following code in Front End PM PRO > Settings > Appearance > Custom CSS#fep-notification-bar { position: fixed; }
Shamim HasanKeymasterIt is already supported.
To see full list please see https://freemius.com/help/documentation/selling-with-freemius/license-utilization/Shamim HasanKeymasterYou can try https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_message_to/ shortcode
Shamim HasanKeymasterAlready requested concern team regarding this.
Thank you
Shamim HasanKeymaster1. Do your users send message in plain text?
2. you can uncheck “Clean reply quote” in Front End PM PRO > Settings > Emails and see if workingTo make urs clickable you can add following code in your theme’s (child theme’s if you are using) functions.php
add_action( 'init', function(){ add_filter( 'fep_get_the_content', 'make_clickable' ); });
-
AuthorPosts