Add a text suffix to the item quantity on the checkout page in WooCommerce on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'woocommerce_checkout_cart_item_quantity', 'wtwh_echo_qty_front_add_checkout' );
function wtwh_echo_qty_front_add_checkout( $quantity_html ) {
return $quantity_html . ' <span class="qty-suff">(Tonnes)</span>';
}