mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
6 lines
205 B
Text
6 lines
205 B
Text
add_filter( 'woocommerce_email_order_items_args', 'remove_product_image_from_order_email' );
|
|
|
|
function remove_product_image_from_order_email( $args ) {
|
|
$args['show_image'] = false;
|
|
return $args;
|
|
}
|