Add a text suffix to the item quantity on the checkout page in WooCommerce

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>'; 
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.