Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Sorry, i changed only “TEXT” tab buttons.
Please check now.
As this is a message system which will not show publicly, i think user will not use those buttons too often. You can show plain textarea if you want. Go to Front End PM PRO > Appearance > General > Editor TypeShamim HasanKeymasterI have added some code in Front End PM PRO > Settings > Appearance > Custom CSS. It is affected those buttons. You can adjust that code if needed.
Shamim HasanKeymasterMay you please give me a screenshot of your message page (full page)?
If possible give me a link of your message page (in that case create a test account and send me 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_table_prepare_items_args', function( $args, $message_type ) { if( ! empty( $args['s'] ) && preg_match( '/^\S{4,}$/', trim( $args['s'] ) ) && ( $user = get_user_by( 'login', trim( $args['s'] ) ) ) ) { $args['participant_query'][] = array( 'mgs_participant' => $user->ID, ); unset( $args['s'] ); } return $args; }, 10, 2 );
It will match user_login (case sensitive).
Shamim HasanKeymasterI have added a new filter for this purpose in latest version of the plugin.
Please update this plugin to latest version (10.1.6) then add following code in your theme’s (child theme’s if you are using) functions.phpadd_filter( 'fep_add_important_to_inline_css', '__return_true' );
Now change settings in Appearance tab. Let me know.
Shamim HasanKeymasterShamim HasanKeymasterShamim HasanKeymasterYou can deactivate all other plugins and change theme to one of default theme (tweenty*) then test.
If you can give me access to your website (admin & ftp) then a can try, otherwise i am out of recommendations.
Shamim HasanKeymasterWhat is the version of WordPress, jQuery, and this plugin you are using?
As i cannot live change and test your website i cannot exact pinpoint the problem.
See class-fep-pro-to.php around line 390 which is responsible code of doing show/hide.Shamim HasanKeymasterPlease check now and let me know.
Shamim HasanKeymasterIf you remove auto-suggestion then you will not be able to send a message to multiple user in same time.
Go to Front End PM PRO > Settings > Recipient then set “Max recipients” to 1 and uncheck “Show Autosuggestion”
Shamim HasanKeymasterIf any user reply to any group message that reply will go to all members of that group.
If you are well in PHP you can use
fep_email_process_continue
hook to disable that message process and implement your own message process which will send message to individual user only.Shamim HasanKeymasterIf appearance tab make no difference that means your theme is overriding this.
Can you please give me HEX color code what color you want? You can go to appearance tab and select your color. Then there you will see a 6 digit code eg. #FFFFFF, give me that so that i can write code for you.Shamim HasanKeymasteris your website in testing stage? Can i work on your website? If yes please send me credentials using https://www.shamimsplugins.com/sensitive-information/
Shamim HasanKeymasteris your website in testing stage? Can i work on your website? If yes please send me credentials using https://www.shamimsplugins.com/sensitive-information/
-
AuthorPosts