Created
September 18, 2020 08:52
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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