Tauscht den Hinweistext „Nicht vorrätig! aus in „Ups. Gerade verkauft!“.
add_filter('woocommerce_get_availability_text', function($text, $product) {
if (!$product->is_in_stock()) {
$text = 'Ups. Gerade verkauft!'; // Text anpassen
}
return $text;
}, 10, 2);