Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
June 19, 2018 at 2:30 pm in reply to: Instead of typing Each user name or ID can we have one excel copy paste system #15098Shamim HasanKeymasterShamim HasanKeymaster
There are lots of server out there. It is not possible to know configuration for all of them. I can only support if you have cPanel. as you do not have cPanel you have to do as your own or contact your host support. You can also google.
Target is to forward your email to a php script (front-end-pm-pro/pro/fep-email-parser/fep-email-piping.php)
June 19, 2018 at 2:19 pm in reply to: Email replies to group messages are not being sent back out to entire group #15095Shamim HasanKeymasterFollow step by step
1. class-fep-cpt.php change https://github.com/shamim2883/front-end-pm/commit/61f11cb4f402dacfb657b7293c5320e92dc3fb64in clas-fep-group-message.php change following
2. changeadd_filter( 'fep_filter_display_participants', array($this, 'display_participants' ), 10, 3 );
toadd_filter( 'fep_filter_display_participants', array($this, 'display_participants' ) );
3. addadd_filter( 'fep_filter_cpt_display_participants', array($this, 'display_participants' ) );
bellow previous line
4. changeif( ! $participants && $group = get_post_meta( $postid, '_fep_group', true ) ){
toif( $group = get_post_meta( $postid, '_fep_group', true ) ){
5. changefunction display_participants( $out, $par, $participants ){
tofunction display_participants( $out ){
6. changeif( ! $participants && $group = get_post_meta( get_the_ID(), '_fep_group', true ) ){
toif( $group = get_post_meta( get_the_ID(), '_fep_group', true ) ){
June 19, 2018 at 12:24 am in reply to: Email replies to group messages are not being sent back out to entire group #15076Shamim HasanKeymasterNext version will be released within this month.
If you need urgently i can give you this issue fix code tomorrow.June 18, 2018 at 11:35 pm in reply to: Email replies to group messages are not being sent back out to entire group #15072Shamim HasanKeymasterThank you for your well explanation. I already found the issue. Next version it will be fixed.
Shamim HasanKeymasterJune 14, 2018 at 4:07 pm in reply to: Make "Send Message" and "Reply" button show spinner animation on send. #15040Shamim HasanKeymasterThis plugin uses wordpress CPT and use build in wordpress functions to do its job. So it should not have performance impact. BBPress also use CPT and wordpress org use BBPress for support forum. Support forums have millions of topics and replies without performance impact.
Please see https://codex.wordpress.org/WordPress_Optimization for optimization of your website.
Shamim HasanKeymasterTo remove code i meant remove same code which i gave you in https://www.shamimsplugins.com/support/topic/how-to-link-the-participants-name-to-their-profile/#post-14663
Shamim HasanKeymasterremove previous code and add following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_user_name', function( $name, $id ){ if( function_exists( 'um_fetch_user' ) ){ um_fetch_user( $id ); $name = '<a href="' . um_user_profile_url() . '">' . $name . '</a>'; } return $name; }, 10, 2);
Shamim HasanKeymasteradd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_before_email_send', function( $content ){ $content['subject'] = strip_tags( $content['subject'] ); return $content; }, 99);
Shamim HasanKeymasterAdd following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_form_submit_button', function( $button, $where ){ if( 'reply' == $where ){ $button = '<button type="submit" class="fep-button" name="fep_action" value="'. esc_attr( $where ) .'">SEND</button>'; } return $button; }, 10, 2 );
Shamim HasanKeymasterYou can mark couple of emails “Not Spam”.
Google https://www.google.com/search?q=why+does+google+think+my+email+is+spam to know why gmail thinks it is spam email.June 8, 2018 at 12:20 am in reply to: how to resend email notifications for messages with no parent? #14888Shamim HasanKeymaster“No Parent” means that message itself is a parent message. It does not indicate that message has responded or not.
Shamim HasanKeymasterShamim HasanKeymasterYes.
Please use any other Mailer in your SMTP plugin setup. If possible use your server SMTP setup.
I see you have “From Email” setup as same domain email. Use this email details to send email. -
AuthorPosts