作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 WooCommerce 中,我使用以下功能,如果产品缺货,它会在产品缩略图上添加售罄文本:
add_action( 'woocommerce_before_shop_loop_item_title', 'bbloomer_display_sold_out_loop_woocommerce' );
function bbloomer_display_sold_out_loop_woocommerce() {
global $product;
if ( ! $product->is_in_stock() ) {
echo '<span class="soldout">Sold Out</span>';
}
}
它适用于简单的产品,但不适用于可变产品。
对于具有变体的可变产品,如果我将除 1 变体之外的所有变体设置为 0 库存数量,我注意到已售罄消息仍显示在缩略图上。从技术上讲,这是不正确的,因为我们确实有一些库存。
有人知道如何更改下面的代码来处理这个问题吗?
最佳答案
您可以创建一个自定义条件函数来检查变量产品的所有变体是否“缺货”,如下所示:
function is_variable_product_out_of_stock( $product ) {
$children_count = 0; // initializing
$variation_ids = $product->get_visible_children();
// Loop through children variations of the parent variable product
foreach( $variation_ids as $variation_id ) {{
$variation = wc_get_product($_variation_id); // Get the product variation Object
if( ! $variation->is_in_stock() ) {
$children_count++; // count out of stock children
}
}
// Compare counts and return a boolean
return count($variation_ids) == $children_count ? true : false;
}
然后你将在下面重新访问的钩子(Hook)函数中使用它:
add_action( 'woocommerce_before_shop_loop_item_title', 'display_products_loop_out_of_stock' );
function display_products_loop_out_of_stock() {
global $product;
if ( ( ! $product->is_type('variable') && ! $product->is_in_stock() )
|| ( $product->is_type('variable') && is_variable_product_out_of_stock( $product ) ) ) {
echo '<span class="soldout">Sold Out</span>';
}
}
代码进入事件子主题(或事件主题)的functions.php 文件中。它应该可以工作。
关于php - 当所有变体都缺货时,显示在 WooCommerce 可变产品上售罄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65654092/
我是一名优秀的程序员,十分优秀!