The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
HTML Emails not dis...
 
Share:
Notifications
Clear all

Issue HTML Emails not displaying correctly

1 Posts
1 Users
0 Reactions
13 Views
Posts: 1
Topic starter
(@webmeda-org)
New Member
Joined: 5 hours 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;
}
 

Topic Tags
Share: