gpt4 book ai didi

php - 如果 WooCommerce 中未启用 "Manage Stock",则显示自定义股票消息

转载 作者:行者123 更新时间:2023-12-02 11:25:45 26 4
gpt4 key购买 nike

如果未选中在产品级别启用库存管理,我想在产品页面中显示有关库存状态的消息

当库存状态为

  • 库存 - “有货”
  • 缺货 - “缺货”
  • onbackorder - “4-7 天后可用”

这可能吗?

最佳答案

使用以下代码,您可以检查库存状态并相应地调整消息。

function change_stock_message( $text, $product ) {  
// Managing stock NOT checked
if ( !$product->managing_stock() ) {

// Get stock status
if ( method_exists( $product, 'get_stock_status' ) ) {
$stock_status = $product->get_stock_status();
}

// Check stock status, adjust the message accordingly
switch ( $stock_status ) {
case 'instock':
$text = __( 'Available', 'woocommerce' );
break;
case 'outofstock':
$text = __( 'Out of stock', 'woocommerce' );
break;
case 'onbackorder':
$text = __( 'Available after 4-7 days', 'woocommerce' );
break;
}
}

return $text;
}
add_filter( 'woocommerce_get_availability_text', 'change_stock_message', 10, 2 );

关于php - 如果 WooCommerce 中未启用 "Manage Stock",则显示自定义股票消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60749190/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com