将延期交货库存状态添加到 Woocommerce 可变产品下拉列表中

Add backorders stock status to Woocommerce variable product dropdown

我想在下拉菜单中显示可变产品的库存状态,包括 'on backorder',因为我网站上的大多数产品都可以延期交货,而不是 'out of stock'。

我试过 的答案,但是,每个变量都列为 'in stock',因为产品设置为允许延期交货。

我想像下面这样检查实际库存水平,但我无法让它与上面的 link.

一起正常工作
$var_stock_count = $variation->get_stock_quantity();

// if there are 0 or less, display 'on backorder'
if( $var_stock_count <= 0 ) {
   return ' - (On Backorder)';
}
else {
   return ' - (In Stock)';
}

我需要帮助将这两段代码合并在一起。谢谢!

此更新功能将处理延期交货的产品(当库存数量小于 1 时):

// Function that will check the stock status and display the corresponding additional text
function get_stock_status_text( $product, $name, $term_slug ){
    foreach ( $product->get_available_variations() as $variation ){
        if($variation['attributes'][$name] == $term_slug ) {
            $is_in_stock = $variation['is_in_stock'];
            $backordered = get_post_meta( $variation['variation_id'], '_backorders', true );
            $stock_qty   = get_post_meta( $variation['variation_id'], '_stock', true );
            break;
        }
    }
    $stock_status_text = $is_in_stock == 1 ? ' - (In Stock)' : ' - (Out of Stock)';
    return $backordered !== 'no' && $stock_qty <= 0 ? ' - (On Backorder)' : $stock_status_text;
}

代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。

Replaces the first function on :

你会得到类似的东西: