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

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

WooCommerce 在訂單通知中顯示高級(jí)自定義字段 (ACF)

WooCommerce 在訂單通知中顯示高級(jí)自定義字段 (ACF)

PHP
忽然笑 2023-05-12 15:52:14
我添加了以下代碼片段以顯示自定義字段(如果產(chǎn)品有字段,則不顯示分類字段)和預(yù)計(jì)交貨時(shí)間。這是工作。    <?php add_action( 'woocommerce_before_add_to_cart_form', 'geschatte_levertijd', 10 );        function geschatte_levertijd (){    if( get_field('plevertijd') ): ?>            <span class="product_melding_kleur"><i class="fa fa-truck"></i>Levertijd: <a href="/verzending-en-levertijd/" alt="Verzending en levertijd" ><?php the_field( 'plevertijd' ); ?></a></span>        <?php else: ?>    <? $terms = get_the_terms( $post->ID, 'product_cat' );            if ( !empty($terms)):            $term = array_pop($terms);                    $text= get_field('levertijd', $term);                    if (!empty($levertijd))?>                <span class="product_melding_kleur"><i class="fa fa-truck"></i>Levertijd: <a href="/verzending-en-levertijd/" alt="Verzending en levertijd" ><?php the_field( 'levertijd', $term ); ?></a></span>    <?php endif; ?>    <?php endif;         }    ?>但現(xiàn)在我正試圖在訂單通知郵件中顯示該字段。在產(chǎn)品標(biāo)題下方。有人可以指出我如何做到這一點(diǎn)的正確方向嗎?
查看完整描述

1 回答

?
蕭十郎

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

以下將使用您的代碼實(shí)現(xiàn)訂單商品名稱下的訂單電子郵件通知顯示:


add_action( 'woocommerce_order_item_meta_start', 'add_estimated_delivery_time_to_emails', 10, 3 );

function add_estimated_delivery_time_to_emails( $item_id, $item, $order ) {

    // On email notifications and for line items

    if ( ! is_wc_endpoint_url() && $item->is_type('line_item') ) { 

        if( $plevertijd = get_field('plevertijd', $item->get_product_id() ) ) {

            echo '<span class="product_melding_kleur"><i class="fa fa-truck"></i>Levertijd: <a href="/verzending-en-levertijd/" alt="Verzending en levertijd" >' . $plevertijd . '</a></span>';

        } else {

            $terms = get_the_terms( $item->get_product_id(), 'product_cat' );

            

            if ( ! empty($terms) ) {

                $term = array_pop( $terms );

                

                if( $levertijd = get_field('levertijd', $term ) ) {

                    echo '<span class="product_melding_kleur"><i class="fa fa-truck"></i>Levertijd: <a href="/verzending-en-levertijd/" alt="Verzending en levertijd" >' . $levertijd . '</a></span>';

                }

            }

        } 

    }

}

代碼進(jìn)入您的活動(dòng)子主題(或活動(dòng)主題)的 functions.php 文件。它應(yīng)該有效。


在前端訂單上顯示:


如果您希望它顯示在客戶訂單(前端)上,您可以從IF聲明中刪除以下內(nèi)容:! is_wc_endpoint_url() &&


您也可以改用woocommerce_order_item_meta_end掛鉤,以在產(chǎn)品變體的產(chǎn)品屬性之后顯示。


查看完整回答
反對(duì) 回復(fù) 2023-05-12
  • 1 回答
  • 0 關(guān)注
  • 198 瀏覽

添加回答

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