• Resolved savastgfx

    (@savastgfx)


    Hello,

    I can’t find from where to change the background color of welcome email. I want to set it on white.

    Thanks!

    • This topic was modified 3 years, 3 months ago by savastgfx.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @savastgfx

    Please try this code snippet to change the background color of the Email HTML template:

    add_filter("um_email_template_body_attrs","um_112421_email_template_body_attrs");
    function um_112421_email_template_body_attrs( $attrs ){
        $attrs = 'style="background: red;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale';
    
        return $attrs;
    }

    You will only see the background color changes when you test email notifications. You can add the above code to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code.

    Regards,

    • This reply was modified 3 years, 3 months ago by Champ Camba.
    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @savastgfx

    ..Please feel free to re-open this thread by changing the Topic Status to ‘Not Resolved’ if any other questions come up and we’d be happy to help. ??

    Regards,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Email background color’ is closed to new replies.