Skip to content

Instantly share code, notes, and snippets.

@zorem
Created September 18, 2020 08:52
Show Gist options
  • Save zorem/96f84ed42b5d5780aeb04231af5931fe to your computer and use it in GitHub Desktop.
Save zorem/96f84ed42b5d5780aeb04231af5931fe to your computer and use it in GitHub Desktop.
We added filter for email order items arguments for shipment status email. If user want to show product image in order items use below code and put in functions.php of your theme.
add_filter( 'ast_email_order_items_args', 'ast_email_order_items_args_callback' );
function ast_email_order_items_args_callback( $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