The forum guidelines are that offering to pay should be done here:
https://jobs.wordpress.net/
Maybe that’s not necessary. Try this snippet in your functions.php:
add_action( 'woocommerce_after_shop_loop_item_title', 'shop_inventory' );
function shop_inventory() {
global $product;
$stock = (int) $product->stock;
if ($stock > 0 && $stock < 5) {
echo '<p class="custom_stock">Beschikbaar: '.$stock.'</p>';
}
if ($stock < 1) {
echo '<p class="custom_stock">Uitverkocht!</p>';
}
}
Then in your custom css:
.custom_stock {font-weight:bold; color:Red}
If your theme does not have a setting where you can enter custom css, you can use a plugin like this one:
https://www.ads-software.com/plugins/simple-custom-css/
If it doesn’t work, leave it in so it can be debugged.