Advertisement
wclovers

Untitled

May 26th, 2022
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_action( 'wcfm_after_order_itemmeta', function( $item_id, $item, $_product, $order ) {
  2.     $weight_unit = get_option('woocommerce_weight_unit');
  3.     $weight = $_product->get_weight();
  4.     echo '<span>Weight: '  . $weight . ' ' . $weight_unit . '</span>';
  5. }, 10, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement