Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
December 24, 2018 at 6:31 am in reply to: messagebox Small visual tweak to include group name in message listing #20067Shamim HasanKeymaster
Next version i will introduce some functions to easily get group name.
Also i am working on improvement on group message/multiple recipients system for performance improve in some cases. Next major version you will get this.
December 23, 2018 at 11:46 pm in reply to: messagebox Small visual tweak to include group name in message listing #20058Shamim HasanKeymasterAlso currently when you mouse over that avatar it shows word “Group”. Next version it will show real group name.
Group name width is not same. So if i show name there and group name is long it will break styling.
December 23, 2018 at 11:30 pm in reply to: messagebox Small visual tweak to include group name in message listing #20056Shamim HasanKeymasterIt is possible. You can use
fep_message_table_column_content_avatar
hook. See class-fep-messages.php for idea.
It needs avatar section rewrite in that hook.If you need mode code let me know.
Shamim HasanKeymasterThere is a small bug for reply message in a group. For temporary fix (upto next version release) add following code in your theme’s (child theme’s if any) functions.php
add_action( 'fep_action_message_after_send', function( $message_id, $message, $inserted_message ){ if( $inserted_message->mgs_parent ) { $group = fep_get_meta( $inserted_message->mgs_parent, '_fep_group', true ); if( $group ){ fep_add_meta( $message_id, '_fep_group', $group, true ); } } }, 5, 3 );
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_eb_email_legends', function( $legends, $mgs, $user_email ){ $legends['cus_group'] = array( 'description' => __('Mail group name', 'front-end-pm'), 'where' => array( 'newmessage', 'reply' ), //where this tag will be used 'replace_with' => ! empty( $mgs->mgs_id ) ? apply_filters( 'fep_is_group_message', '', $mgs->mgs_id ) : '', ); return $legends; }, 10, 3);
Now add {{cus_group}} in email
Shamim HasanKeymasterYou can add your own tag if you want. Please see https://www.shamimsplugins.com/docs/front-end-pm-pro/customization-front-end-pm-pro/add-own-email-tag/
Shamim HasanKeymasterAs this email is processed correctly then this is well formatted. So i do not need this email copy.
Let me know test result when he is home.I am sending you an email about Satbroadband. Let me know if you received.
Shamim HasanKeymasterAlso did you setup your license key? Is it showing licence expiry date bellow your licence field in Front End PM PRO > Settings > Licences?
Shamim HasanKeymasterWhich version you are using?
Slow down full site or only message page?
Can you install query monitor plugin and see which query taking more time?Shamim HasanKeymasterPlease go to Dashboard > Front End PM PRO > Settings > General > Show Directory
Uncheck this and save. This will show Directory only to admins.To pre-populate “To” field you can use https://www.shamimsplugins.com/docs/front-end-pm/shortcode/fep_shortcode_message_to/. It will show a link and when any user will click that link then “To” field will be auto populated.
Shamim HasanKeymasterDo you use any security plugin which block direct file access? You can deactivate security plugin for testing if that works.
You can also setup POP3 which works in most of the websites if not all. It query for new emails every hour (may change in future). So after sending reply you have to wait an hour to see if working.
Shamim HasanKeymasterCan you send me full error email you are receiving when deliever failed? (You can change domain/personal info)
Shamim HasanKeymasterCan you access inbox of that reply email?If you send an email to your reply@subdomain.domain.com do you receive that email if you access that inbox?
December 16, 2018 at 12:46 am in reply to: Repies not being forwarded from the piping mailbox #19838Shamim HasanKeymasterPlease tell him to send reply directly from browser (go to gmail.com and reply from there) and let me know if that works.
Shamim HasanKeymasterIt seems this raw email have extra line breaks which breaks the decode system.
From which device that user is sending email from? Which application he is using to send email? -
AuthorPosts