/** * Add suffix to prices */ add_filter('woocommerce_get_price_suffix', 'cc_add_price_suffix', 99, 4); function cc_add_price_suffix($html, $product, $price, $qty) { $html .= ' in any mixed dozen'; return $html; }