“Only 3 left” when stock runs low
When 5 or fewer are left, the product page says “Only 3 left – order soon” instead of “3 in stock”.
<?php
add_filter(
'woocommerce_get_availability_text',
static function ( $text, $product ) {
$qty = $product->get_stock_quantity();
if ( $product->managing_stock() && $product->is_in_stock() && null !== $qty && $qty > 0 && $qty <= 5 ) {
return sprintf( 'Only %d left – order soon', $qty );
}
return $text;
},
10,
2
);
Good to know
Needs stock management on the product. Change 5 and translate the message.
In these packs
- WooCommerce: shop and product pages: Badges, price display, tabs and layout for your shop and product pages.