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

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

通過(guò)減少 WooCommerce 中的自定義庫(kù)存數(shù)量,使“缺貨”產(chǎn)品變體變灰

通過(guò)減少 WooCommerce 中的自定義庫(kù)存數(shù)量,使“缺貨”產(chǎn)品變體變灰

PHP
慕后森 2023-07-21 16:10:40
我現(xiàn)在面臨的問(wèn)題是,它不會(huì)檢查這些變體是否缺貨(例如主庫(kù)存為 10,捆綁設(shè)置設(shè)置為 12 瓶)。我用來(lái)添加總庫(kù)存減少乘數(shù)的代碼是:// For implementation instructions see: https://aceplugins.com/how-to-add-a-code-snippet//**?* Simple product setting.?*/function ace_add_stock_inventory_multiplier_setting() {? ? ?><div class='options_group'><?php? ? ? ? woocommerce_wp_text_input( array(? ? ? ? ? ? 'id'? ? ? ? ? ? ? ? => '_stock_multiplier',? ? ? ? ? ? 'label'? ? ? ? ? ? ?=> __( 'Inventory reduction per quantity sold', 'woocommerce' ),? ? ? ? ? ? 'desc_tip'? ? ? ? ? => 'true',? ? ? ? ? ? 'description'? ? ? ?=> __( 'Enter the quantity multiplier used for reducing stock levels when purchased.', 'woocommerce' ),? ? ? ? ? ? 'type'? ? ? ? ? ? ? => 'number',? ? ? ? ? ? 'custom_attributes' => array(? ? ? ? ? ? ? ? 'min'? ?=> '1',? ? ? ? ? ? ? ? 'step'? => '1',? ? ? ? ? ? ),? ? ? ? ) );? ? ?></div><?php}add_action( 'woocommerce_product_options_inventory_product_data', 'ace_add_stock_inventory_multiplier_setting' );/**?* Add variable setting.?*?* @param $loop?* @param $variation_data?* @param $variation?*/function ace_add_variation_stock_inventory_multiplier_setting( $loop, $variation_data, $variation ) {? ? $variation = wc_get_product( $variation );? ? woocommerce_wp_text_input( array(? ? ? ? 'id'? ? ? ? ? ? ? ? => "stock_multiplier{$loop}",? ? ? ? 'name'? ? ? ? ? ? ? => "stock_multiplier[{$loop}]",? ? ? ? 'value'? ? ? ? ? ? ?=> $variation->get_meta( '_stock_multiplier' ),? ? ? ? 'label'? ? ? ? ? ? ?=> __( 'Inventory reduction per quantity sold', 'woocommerce' ),? ? ? ? 'desc_tip'? ? ? ? ? => 'true',? ? ? ? 'description'? ? ? ?=> __( 'Enter the quantity multiplier used for reducing stock levels when purchased.', 'woocommerce' ),? ? ? ? 'type'? ? ? ? ? ? ? => 'number',? ? ? ? 'custom_attributes' => array(? ? ? ? ? ? 'min'? ?=> '1',? ? ? ? ? ? 'step'? => '1',? ? ? ? ),? ? ) );}
查看完整描述

2 回答

?
肥皂起泡泡

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

將總庫(kù)存數(shù)量與新添加的設(shè)置進(jìn)行比較$multiplier

注釋并添加到代碼中的解釋

function filter_woocommerce_variation_is_active( $active, $variation ) {    

    // Get multiplier

    $multiplier = get_post_meta( $variation->get_variation_id(), '_stock_multiplier', true );   

    

    // NOT empty

    if ( ! empty( $multiplier ) ) {

        // Get stock quantity

        $var_stock_count = $variation->get_stock_quantity();

        

        // Stock quantity < multiplier

        if( $var_stock_count < $multiplier ) {

            $active = false;

        }

    }

    

    return $active;

}

add_filter( 'woocommerce_variation_is_active', 'filter_woocommerce_variation_is_active', 10, 2 );



查看完整回答
反對(duì) 回復(fù) 2023-07-21
?
慕虎7371278

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

它不起作用,因?yàn)椋?/p>

  • $item您的代碼中未定義變量。

  • 您的自定義字段在父變量產(chǎn)品中定義。

所以你需要更換:

$multiplier = $item->get_product()->get_meta( '_stock_multiplier' );

通過(guò)以下方式(從父變量產(chǎn)品獲取數(shù)據(jù))

$multiplier = get_post_meta( $variation->get_parent_id(), '_stock_multiplier', true );

所以在你的代碼中:

add_filter( 'woocommerce_variation_is_active', 'my_jazzy_function', 10, 2 ); 

function my_jazzy_function( $active, $variation ) {    

    // Get multiplier

    if( $multiplier = get_post_meta( $variation->get_parent_id(), '_stock_multiplier', true ) {

        // Get stock quantity

        $var_stock_count = (int) $variation->get_stock_quantity();

    

        // if there are 5 or less, disable the variant, could always just set to 0

        return $var_stock_count <= $multiplier ? false : $active;

    }

    return  $active;

}

現(xiàn)在應(yīng)該可以了。


查看完整回答
反對(duì) 回復(fù) 2023-07-21
  • 2 回答
  • 0 關(guān)注
  • 172 瀏覽

添加回答

舉報(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)