首頁 > 後端開發 > php教程 > 如何在 WooCommerce 變體下拉清單中顯示單屬性產品的庫存狀態?

如何在 WooCommerce 變體下拉清單中顯示單屬性產品的庫存狀態?

DDD
發布: 2024-10-30 14:54:03
原創
779 人瀏覽過

How to Display Stock Status in WooCommerce Variation Dropdown for Single-Attribute Products?

如何在WooCommerce 變體下拉清單中增強變體庫存狀態

問題:

在WooCommerce 產品中顯示WooCommerce產品變體時頁面下拉選單中,每個變體的庫存狀態(例如,有貨/缺貨)不容易取得。

解決方案:

更新了單一屬性功能變體(2021 年推出)

注意:此方案適用於只有一個下拉屬性的可變產品。

修改wc_dropdown_variation_attribute_options 函數:

<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 ) {
    // Ensure there's only one variation attribute
    if( sizeof($args['product']->get_variation_attributes()) == 1 ) {
        $options = $args['options'];
        $product = $args['product'];
        $attribute = $args['attribute'];
        $name = $args['name'] ? $args['name'] : 'attribute_' . sanitize_title( $attribute );
        $show_option_none = $args['show_option_none'] ? true : false;

        if ( ! empty( $options ) ) {
            $html = '<select id="' . esc_attr( $id ) . '" class="' . esc_attr( $class ) . '" name="' . esc_attr( $name ) . '" data-attribute_name="attribute_' . esc_attr( sanitize_title( $attribute ) ) . '" data-show_option_none="' . ( $show_option_none ? 'yes' : 'no' ) . '">';
            $html .= '<option value="">' . esc_html( $show_option_none_text ) . '</option>';

            foreach ( $options as $option ) {
                $stock_status = get_stock_status_text( $product, $name, $option );
                $html .= '<option value="' . esc_attr( $option ) . '" ' . selected( sanitize_title( $args['selected'] ), $option, false ) . '>' . esc_html( apply_filters( 'woocommerce_variation_option_name', $option ) . $stock_status ) . '</option>';
            }
            $html .= '</select>';
        }
    }
    return $html;
}</code>
登入後複製

附加功能:取得每個變體的庫存狀態文字

<code class="php">function get_stock_status_text( $product, $name, $term_slug ) {
    foreach ( $product->get_available_variations() as $variation ){
        if($variation['attributes'][$name] == $term_slug ) {
            $stock = $variation['is_in_stock'];
            break;
        }
    }
    return $stock == 1 ? ' - (In Stock)' : ' - (Out of Stock)';
}</code>
登入後複製

將上述程式碼片段插入主題的functions.php檔案或外掛檔。

限制:

提供的解決方案僅適用於具有一個下拉屬性的可變產品。

    適用於具有多個下拉清單的產品屬性,庫存狀態顯示可能不準確。

以上是如何在 WooCommerce 變體下拉清單中顯示單屬性產品的庫存狀態?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板