Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
Shamim HasanKeymaster
We cannot send email from an email address which we do not own. You do not own your user email address, so you can not send email from that email address. We can try but most of the cases it will fail.
Shamim HasanKeymasterTo get latest messages you can use
FEP_Message_Query
class.
To change notification bar, textarea you need some css knowledge. You can use browser developer feature to know css selectors of your desire html markup. for firefox see https://developer.mozilla.org/en-US/docs/Learn/Common_questions/What_are_browser_developer_toolsShamim HasanKeymasteradd following code in your theme’s (child theme’s if using) functions.php
add_filter( 'fep_get_user_groups', function( $user_groups, $user_id ){ $groups = fep_get_option('gm_groups', array()); if( $groups && is_array( $groups) ){ foreach ( $groups as $group ) { $user_groups[ $group['slug'] ] = $group['name']; } } return $user_groups; }, 10, 2);
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if using) functions.php
add_action( 'fep_message_table_column_content_avatar', function(){} );
Shamim HasanKeymasterPlease follow https://www.shamimsplugins.com/docs/front-end-pm-pro/getting-started-2/translate/
Your other questions need some code. But i am outside. I will be back after 1 week. Then i will give you some code to achieve those changes.
Shamim HasanKeymasterYes, but it needs some code.
I am outside. I will be back after 1 week. Then i will give you some code to achieve this functionality.November 16, 2018 at 7:05 am in reply to: Show name of members in the conversation, not the person who made the last reply #19088Shamim HasanKeymasterIf you show photos then there is a easy way to show the other user photo only
Add following code in your theme’s (child theme you are using one) functions.phpadd_filter( 'fep_remove_own_avatar_from_messagebox', '__return_true' );
Or to show names of other user you have to use
fep_message_table_column_content_author
action hook. It needs some custom code. You need participants name then remove own name from them.Shamim HasanKeymasterI can do that, but as i told you earlier it will not always works. For paid modification please contact through https://www.shamimsplugins.com/hire/
Shamim HasanKeymasterYou can use some regex to do that but it does not always works. Users can change their mobile no or email a little to bypass this.
November 13, 2018 at 4:22 am in reply to: how to determine what users blocked and admin override (whitelist not working) #18997Shamim HasanKeymasterBlocked users are stored in user meta of that individual user who block other user. It is hard to query blocked users as this is stored as serialized array and blocked user ids are comma separated string.
You can disable blocked feature all together if you want. Please go to Front End PM PRO > Settings > Security
Shamim HasanKeymasterDid you changed your theme to tweenty* and deactivate all other plugins including all custom plugins except this and test?
If above steps do not solve your issue please give me access to your test website so that i can test. Please use https://www.shamimsplugins.com/sensitive-information/ for sending credential.
Shamim HasanKeymasterIt means somethings is wrong in your website.
Please change your theme to unmodified default theme (tweenty*).
If still have same issue then deactivate all other plugins including all custom plugins. Only keep latest Front End PM PRO active. Then test.Let me know.
Shamim HasanKeymasterYou can add
-----Reply Above This Line-----
on top of email content in Front End PM PRO > Settings > Emails. Then add following code in your child theme’s functions.phpadd_filter( 'fep_filter_message_before_send', function( $message ) { $message['message_content'] = strstr( $message['message_content'], '-----Reply Above This Line-----', true ) ?: $message['message_content']; return $message; });
November 9, 2018 at 7:03 pm in reply to: Flagging or blocking particular email piping for the post using message id #18950Shamim HasanKeymasterMain plugin need to be changed a little to achieve this functionality. You have to wait for next version. Then i can make this for you.
November 8, 2018 at 7:09 pm in reply to: Flagging or blocking particular email piping for the post using message id #18910Shamim HasanKeymasterYou want a admin field (like user blacklist in security tab) where you can add message keys and users will not be able to reply those emails, right? Can users reply from website?
-
AuthorPosts