Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'woocommerce_email_styles', 'my_filter_woocommerce_email_styles' );
  4.  
  5. /**
  6. * Filter email styles for WooCommerce and AutomateWoo.
  7. *
  8. * @param string $css
  9. *
  10. * @return string
  11. */
  12. function my_filter_woocommerce_email_styles( $css ) {
  13. $css .= "#template_header { background-color: #7532e4; } ";
  14.  
  15. return $css;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement