Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Sorry, currently it is not possible.
You can see it in front-end if require.Shamim HasanKeymasterAs this plugin use separate plugin and query system, it should not impacted by other plugins.
Also it totally depends on hosting. If you have good server it can go well above that counts.Shamim HasanKeymasteryou can use .not (https://developer.mozilla.org/en-US/docs/Web/CSS/:not)
Shamim HasanKeymasterYes, possible.
You can follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/Shamim HasanKeymasteruse
first_last_nameinstead ofdisplay_nameShamim HasanKeymasterIt is possible but needs php knowledge.
You can get an idea from https://www.shamimsplugins.com/support/topic/how-to-search-messages-by-username/#post-41820Shamim HasanKeymasterWhich shortcode you are using?
It seems useruser_nicenameis not passing properly. Can you please check your code if you passinguser_nicename?Shamim HasanKeymasterFor this type of code you can contact me using https://www.shamimsplugins.com/hire/.
Shamim HasanKeymasterIt is always there?
Can you provide me access to your website so that i can test? If yes provide credentials using https://www.shamimsplugins.com/sensitive-information/Shamim HasanKeymasterYou can 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 && $id == get_current_user_id() ) { $name .= " (You)"; } return $name; }, 10, 2);Shamim HasanKeymasterThank you for your nice suggestion, I will try to add this in future release.
Shamim HasanKeymasterCurrent version it is not possible without modifying core plugin code.
In future i will try to add this.July 9, 2021 at 10:03 pm in reply to: Remove certain roles from announcement or send to everyone #43350Shamim HasanKeymasterShamim HasanKeymasterPlease add following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_current_user_can', function( $can, $cap, $id ){ if( 'send_reply' !== $cap ) { return $can; } if( $can && $id && fep_is_group_message( $id ) ) { return false; } return $can; }, 10, 3);Shamim HasanKeymasterDo you want to set this for all group message so that any message to any group can’t be replied?
-
AuthorPosts