Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
Thank you for letting me know. i will investigate more. If this issue from this plugin i will try to solve it in next version.
Shamim HasanKeymasteradd following code in your theme’s ( child theme’s if any) functions.php
add_filter('fep_get_user_option', function( $value, $option, $default, $userid, $is_default ){ if( 'allow_emails' == $option && $is_default ){ $value = 0; } return $value; }, 10, 5);
Shamim HasanKeymasterYou want to change default value to unchecked so that user can check that if they want or want to unchecked so that they cannot check and will not get email?
Shamim HasanKeymasterYou can type anything in slug, but in “Group Members” field that makes the difference. See my previous most of post i was telling you have to type in “Group Members” field.
Glad it is working now.
Shamim HasanKeymasterYou are typing in “Group Slug” field. You have to type in “Group Members” field. Just bellow that field where you are typing.
Shamim HasanKeymasterPlease in “Group Members” field type
{role-unparsed}-role_name
(instead of role_name type actual role name). Roles suggestion will show bellow that field. Select role from that suggestion. Then save changes.Shamim HasanKeymasterAdd your admission team in “Group Members” field. You can add all members from that role. Please see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/group-messaging/
January 19, 2019 at 3:07 am in reply to: A Sidebar shows up when a message is opened from Inbox #20850Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if you are using) functions.php
add_filter( 'fep_locate_template', function( $template, $template_names ) { if ( in_array( 'view-message.php', $template_names ) ) { $template = fep_locate_template( 'view-message-legacy.php' ); } return $template; }, 10, 2 );
Shamim HasanKeymasterPlease set “Max Recipients” to 0 as you do not want to show empty “To” field.
Then add this code https://www.shamimsplugins.com/support/topic/send-message-to-group-not-member-of-that-group/#post-19329add members in your group (your support user)
Shamim HasanKeymaster1. Which version you are using?
2. Please go to Dashboard > Front End PM PRO > All Announcements and let me know what shows in “Email Pending” column
3. Do you have knowledge in php? If i give you some debug code can you use can that code in your website?Shamim HasanKeymasterIf you follow every steps in above link under “Using Loco Translate Plugin” then if that “read by” is missing that will be corrected.
If you still want me to log in your website and correct that then please send me credentials using https://www.shamimsplugins.com/sensitive-information/
Shamim HasanKeymasterPlease see https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/translate/ for translate. see under “Using Loco Translate Plugin”
For your second question, That is subject of message. Who sent that message typed that wrong.
January 17, 2019 at 4:16 am in reply to: A Sidebar shows up when a message is opened from Inbox #20780Shamim HasanKeymasterDon’t you use gravatar in your website?
This is a new feature, users can navigate to other messages from there. But there should show recipients avatar.If you do not like this feature there is an easy way to show like previous version. Let me know if you want that.
Shamim HasanKeymasterYes it will work, but search only for message sender, message recipients will not be searched.
Some observation
1. Missing space before INNER JOIN
2. use esc_sql instead of esc_html or use $wpdb->prepareShamim HasanKeymasterPossible but you will need to write complex query for this.
-
AuthorPosts