如何將變體庫存狀態添加到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中文網其他相關文章!