第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何僅在 woocommerce 的商店頁(yè)面上顯示有貨的變體?

如何僅在 woocommerce 的商店頁(yè)面上顯示有貨的變體?

PHP
阿波羅的戰(zhàn)車 2022-07-22 15:18:51
我不想顯示所有可用的屬性,我只需要顯示那些在后端保存了庫(kù)存的變量值。就像我有一個(gè)名為尺寸的變量一樣,所以我想顯示產(chǎn)品及其可用尺寸,如果產(chǎn)品有 5 種不同尺寸,但其中兩種尺寸沒(méi)有庫(kù)存,則只顯示其他 3 種有庫(kù)存的尺寸,并且如果一種產(chǎn)品有 5 種不同的尺寸并且所有尺寸都有庫(kù)存,則顯示所有這些尺寸。這是我正在使用的代碼:    echo '<div class="row m-0 justify-content-center">';    $fabric_values = get_the_terms( $product->id, 'pa_sizes');    foreach ( $fabric_values as $fabric_value ) {        echo '<button class="btn btn-circle btn-lg rounded-circle">'."$fabric_value->name" . '</button>';    }    echo '</div>';這是快照: 請(qǐng)參閱此處的屏幕截圖 這顯示了我之前存儲(chǔ)的所有屬性。如果有人可以幫助我,有什么解決方案?
查看完整描述

1 回答

?
蝴蝶不菲

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊

嘗試這個(gè)


global $product;


        $taxonomy    = 'pa_sizes'; // The product attribute taxonomy

        $sizes_array = []; // Initializing

        // Loop through available variation Ids for the variable product

        foreach( $product->get_children() as $child_id ) {

            $variation = wc_get_product( $child_id ); // Get the WC_Product_Variation object

            if( $variation->is_purchasable() && $variation->is_in_stock() ) {

                $term_name = $variation->get_attribute( $taxonomy );

                $file_list[$term_name] = $term_name;


            }

        }


        /*

         * Loop through the array and print all the values

         */

        if(is_array($file_list)){

            sort ($file_list);

            foreach($file_list as $file){ 

                echo '<button class="btn btn-circle btn-lg rounded-circle">' . $file . '</button>';

            }

        }

        else{

            echo '<p style="font-size:12px;">No Sizes Available</p>';

        }


查看完整回答
反對(duì) 回復(fù) 2022-07-22
  • 1 回答
  • 0 關(guān)注
  • 220 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)