Set the thumbnail product background color to white in email notifications in WooCommerce

Set the thumbnail product background color to white in email notifications in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'woocommerce_email_styles', 'custom_wc_email_styles', 20 );
function custom_wc_email_styles( $css ) {
    $css .= '.order_item > td > img { background-color: #ffffff; }';
    return $css;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.