Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/74dd70f1e55cd935e03b3dfdaab1d8b1 to your computer and use it in GitHub Desktop.
Save plugin-republic/74dd70f1e55cd935e03b3dfdaab1d8b1 to your computer and use it in GitHub Desktop.
<?php
/**
* Set max image width in order emails
*/
function prefix_set_max_image_width_emails( $css, $email ) {
$css .= '
img { max-width: 150px }
';
return $css;
}
add_filter( 'woocommerce_email_styles', 'prefix_set_max_image_width_emails', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment