Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
For version 11.1.1+ please add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_groups_to_send_message', function( $groups ){ return Fep_Group_Message::init()->get_all_groups(); });
Shamim HasanKeymasterPlease check if you are member to both groups.
Shamim HasanKeymasterIt will be possible but you will need custom query for that.
Also if you have many users and messages it may slow down your website.Shamim HasanKeymasterA new menu is added for groups. Please go to Dashboard > Front End PM PRO > All Groups
(See screenshot)Note: You will have to be admin (edit page capability) to access that menu
Attachments:You must be logged in to view attached files.Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_filter_tokeninput_localize', function( $args ){ if ( isset( $_GET['fepaction'] ) && 'newmessage' == $_GET['fepaction'] && ! empty( $args['prePopulate'] ) && is_array( $args['prePopulate'] ) ) { $args['tokenLimit'] = count( $args['prePopulate'] ); foreach ( $args['prePopulate'] as &$value ) { $value['readonly'] = true; } } return $args; });
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if using) functions.php
add_filter( 'fep_eb_email_legends', function( $legends, $mgs, $user_email ){ $legends['cus_sender_avatar'] = array( 'description' => __('Sender Avatar', 'front-end-pm'), 'where' => array( 'newmessage', 'reply' ), //where this tag will be used 'replace_with' => $mgs ? get_avatar( $mgs->mgs_author, 64 ) : '', ); $legends['cus_receiver_avatar'] = array( 'description' => __('Receiver Avatar', 'front-end-pm'), 'where' => array( 'newmessage', 'reply' ), //where this tag will be used 'replace_with' => $mgs ? get_avatar( $user_email, 64 ) : '', ); return $legends; }, 10, 3);
Then you can use
{{cus_sender_avatar}}
and{{cus_receiver_avatar}}
Shamim HasanKeymasterYou can show them above link so that they can modify that as you need.
Or
Ask them how to get profile image url from user id and let me know so that i can modify that code as you need.Shamim HasanKeymasterYou can follow above link.
Do you use any plugin for profile image? Do you know how to get profile image url form user id?Shamim HasanKeymasterRemove toggle feature entirely is not supported yet, Please wait for next version. It will be included.
Shamim HasanKeymasterYes, it will work.
Shamim HasanKeymasterPlease see list of forms it is supported by default https://www.shamimsplugins.com/products/advanced-nocaptcha-and-invisible-captcha-pro/
For other forms you can follow instruction mentioned in that link if possible, or contact that form author. You can show them that link so that they know how to implement.
Shamim HasanKeymasterPlease follow https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/troubleshoot-2/license-keys-not-activating-2/
Let me know.
To share any private information you can send using https://www.shamimsplugins.com/contact-us/
Shamim HasanKeymasterYou can uncheck bleeding edge update option if your website is on production.
Shamim HasanKeymasterTo implement in a custom form please see https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-custom-form/
Shamim HasanKeymasterPlease got to Front End PM PRO > Settings > Emails > Email Piping/POP3
and set “Enable” as “None”. This will remove message key from email subject. -
AuthorPosts