Skip to content

Instantly share code, notes, and snippets.

@Basilakis
Last active March 27, 2020 09:23
Show Gist options
  • Save Basilakis/f3f6630718926cb9775e16b34e3d550e to your computer and use it in GitHub Desktop.
Save Basilakis/f3f6630718926cb9775e16b34e3d550e to your computer and use it in GitHub Desktop.
Add Product Weight to WooCommerce Emails
add_action( 'woocommerce_order_item_meta_end', 'ts_order_item_meta_end', 10, 4 );
function ts_order_item_meta_end( $item_id, $item, $order, $plain_text, $product ){
global $product;
$product = wc_get_product();
echo $product->get_weight();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment