如何将变体库存状态添加到 WooCommerce 产品变体下拉列表
问题:
WooCommerce不显示下拉列表中单个产品变体的库存状态。这可能会让客户很难确定哪些变体可用。
解决方案:
要将变体库存状态添加到下拉列表中,您可以修改 wc_dropdown_variation_attribute_options 函数您的 WooCommerce 安装。此函数生成显示在下拉菜单中的 HTML。
代码:
<code class="php">add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'show_stock_status_in_dropdown', 10, 2 ); function show_stock_status_in_dropdown( $html, $args ) { // Get the product and attribute. $product = $args['product']; $attribute = $args['attribute']; // Get the variations for the product. $variations = $product->get_available_variations(); // Loop through the variations and get the stock status for each one. foreach ( $variations as $variation ) { // Get the stock status. $stock_status = $variation['is_in_stock'] ? 'In Stock' : 'Out of Stock'; // Append the stock status to the HTML. $html .= '<option value="' . esc_attr( $variation['variation_id'] ) . '" ' . selected( $args['selected'], $variation['variation_id'], false ) . '>' . esc_html( apply_filters( 'woocommerce_variation_option_name', $variation['attributes'][ $attribute ] ) ) . ' - (' . esc_html( $stock_status ) . ')</option>'; } return $html; }</code>
说明:
以上是如何在 WooCommerce 下拉列表中显示产品变体的库存状态?的详细内容。更多信息请关注PHP中文网其他相关文章!