在Woocommerce交易电子邮件中显示产品ACF字段值

时间:2019-02-17 23:12:34

标签: php wordpress woocommerce advanced-custom-fields email-notifications

Woocommerce交易明细中的每个项目旁边是否都有一个自定义字段(使用ACF创建)?

我有一个名为“ shpng”的字段,其中包含发货日期,并且每天都从syncsd导入文件进行更改,并最终在数据库中每种产品的shpng字段下。

1 个答案:

答案 0 :(得分:1)

尝试以下操作,该操作应在电子邮件通知的项目名称下显示您的ACF值:

// Display Items Shipping ACF custom field value in email notification
add_filter( 'woocommerce_order_item_name', 'custom_order_item_name', 10, 2 );
function custom_order_item_name( $item_name, $item ) {
    // Targeting email notifications only
    if( is_wc_endpoint_url() ) 
        return $item_name;

    // Get the WC_Product object (from order item)
    $product = $item->get_product();

    if( $shpng_value = get_field('shpng', $product->get_id()) ) {
        $item_name .= '<br><p class="item-shpng" style="margin:12px 0 0;">
        <strong>' . __( 'Shipping Date', 'woocommerce' ) . ': </strong>' . $shpng_value . '</p>';
    }
    return $item_name;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

继续: Display product custom fields in cart next to each item name in Woocommerce