mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/77150744/define-item-thumbnail-background-color-as-white-in-woocommerce-email-notificatio/77152432
5 lines
202 B
Text
5 lines
202 B
Text
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;
|
|
}
|