Functions.php dosyasına bu kodu ekleyin ve deneyin;
add_action('woocommerce_before_shop_loop_item', 'custom_out_of_stock_badge', 10); function custom_out_of_stock_badge() { global $product; if (!$product->is_in_stock()) { echo '<style>.product { opacity: 0.5; }</style>'; } }