Shamim Hasan
Forum Replies Created
-
AuthorPosts
-
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 HasanKeymaster
Thank 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.Shamim HasanKeymasterI logged email and see that email sent.
Now i re-activate SMTP plugin. Can you please check sendgrid log to see if any email there.Shamim HasanKeymasterPlease use ftp/file manager then go to your website wp-content/plugins directory and remove shamim-email-log folder.
If you find any difficulty you can give me FTP access.
Shamim HasanKeymasterSorry, by mistake i have uploaded wrong version. Please remove shamim-email-log plugin by ftp
Shamim HasanKeymasterIt seems your sendgrid ip is blacklisted by spamcop.
Can i temporarily deactivate your SMTP plugin and install a custom plugin which will log every email in your server instead of actually send email? -
AuthorPosts