This snippet allows you to add any custom prefix to the stock quantity shown on the single product template. In this particular example, we’ve added “Relax…there are” as the prefix.
/**
* Snippet Name: WooCommerce Add Prefix To Stock Quantity
* Snippet Author: ecommercehints.com
*/
add_filter( 'woocommerce_format_stock_quantity', 'ecommercehints_add_stock_quantity_prefix', 10, 2 );
function ecommercehints_add_stock_quantity_prefix($stock_quantity, $product) {
$stock_quantity = 'Relax...there are ' . $stock_quantity;
return $stock_quantity;
}