Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Last active June 23, 2025 08:52
Show Gist options
  • Select an option

  • Save dennisnissle/e31fb579dacbc12a5f2deb464fe1dcf0 to your computer and use it in GitHub Desktop.

Select an option

Save dennisnissle/e31fb579dacbc12a5f2deb464fe1dcf0 to your computer and use it in GitHub Desktop.
Show product thumbnails in shipping notification
<?php
add_filter( 'woocommerce_shiptastic_email_shipment_items_args', function( $args ) {
$args['show_image'] = true;
return $args;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment