The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Issue HTML Emails not displaying correctly
(@webmeda-org)
Active Member
Joined: 1 month ago
Wordpress is adding line breaks to my HTML code for my emails. I tried to follow online tutorials to remove the filter through functions php:
Can anyone help? Or explain why it's not working?
add_action('wpdiscuz_email_before_send_email', 'wpd_remove_wpautop_from_emails', 1);
function wpd_remove_wpautop_from_emails($args) {
if ( isset($args['wpdiscuz_email_content']) ) {
$args['wpdiscuz_email_content'] = str_replace(array('<p>', '</p>'), '', $args['wpdiscuz_email_content']);
$args['wpdiscuz_email_content'] = str_replace(array('<br>', '<br />'), '', $args['wpdiscuz_email_content']);
}
return $args;
}
(@asti)
Illustrious Member
Joined: 8 years ago
Hi, @webmeda-org,
Please try this code:
add_filter('wpdiscuz_confirm_email_content_pre_replace', 'wpd_remove_wpautop_from_emails', 1);
function wpd_remove_wpautop_from_emails($message) {
if ($message) {
$message = str_replace(['<p>', '</p>'], '', $message);
$message = str_replace(['<br>', '<br />'], '', $message);
}
return $message;
}
(@webmeda-org)
Active Member
Joined: 1 month ago
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8192
Oct 31, 2025 9:33 am
@webmeda-org
Your post appears to be empty. Could you please confirm whether the issue has been resolved?
(@webmeda-org)
Active Member
Joined: 1 month ago
I was trying to show you the code before and after saving and I think that's breaking my comment, I tried to attach them as files but that's also not allowed
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8192
Nov 01, 2025 7:43 am
@webmeda-org
Please record a video, so we can see the problem.