Apply dynamic styles to email templates woo-commerce.


Please find below code to apply dynamic CSS in Woo-Commerce.

add_filter( ‘woocommerce_email_styles’, ‘aviweb_woocommerce_email_styles’ );
function aviweb_woocommerce_email_styles( $css ) {
$css .= “#template_header_image { margin-left: 50px; }”;
return $css;
}

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s