如何在新订单电子邮件中显示 WooCommerce 自定义产品元数据?
How to show WooCommerce custom product meta in new order emails?
我目前正在成功保存单个产品的自定义 post 元数据,如下所示:
function save_payment_terms( $product_id ) {
if ( isset( $_POST['payment_terms'] ) ) {
update_post_meta( $product_id, 'payment_terms', is_numeric( $_POST['payment_terms'] ) ? absint( wp_unslash( $_POST['payment_terms'] ) ) : '1' );
}
}
如何将自定义 post 元添加到新的订单确认电子邮件中?我尝试了以下挂钩但没有成功:woocommerce_email_order_meta
和 woocommerce_order_item_meta_start
。最新迭代如下所示:
add_action('woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 4);
function email_confirmation_display_order_items($item_id, $item, $order, $plain_text) {
echo '<div>Terms: '. wc_get_order_item_meta( $item_id, 'payment_terms') .'</div>';
}
导致:
执行 wc_get_order_item_meta
的 var_dump
,我得到:../snippet-ops.php(446) : eval()'d code:7:boolean false
任何人都可以对此有所了解吗?
请尝试以下操作:
add_action( 'woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 3 );
function email_confirmation_display_order_items( $item_id, $item, $order ) {
// On email notifications for line items
if ( ! is_wc_endpoint_url() && $item->is_type('line_item') ) {
$payment_terms = get_post_meta( $item->get_product_id(), 'payment_terms', true );
if ( ! empty($payment_terms) ) {
printf( '<div>' . __("Terms: %s", "woocommerce") . '</div>', $payment_terms );
}
}
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。它应该有效。
相关:
我目前正在成功保存单个产品的自定义 post 元数据,如下所示:
function save_payment_terms( $product_id ) {
if ( isset( $_POST['payment_terms'] ) ) {
update_post_meta( $product_id, 'payment_terms', is_numeric( $_POST['payment_terms'] ) ? absint( wp_unslash( $_POST['payment_terms'] ) ) : '1' );
}
}
如何将自定义 post 元添加到新的订单确认电子邮件中?我尝试了以下挂钩但没有成功:woocommerce_email_order_meta
和 woocommerce_order_item_meta_start
。最新迭代如下所示:
add_action('woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 4);
function email_confirmation_display_order_items($item_id, $item, $order, $plain_text) {
echo '<div>Terms: '. wc_get_order_item_meta( $item_id, 'payment_terms') .'</div>';
}
导致:
执行 wc_get_order_item_meta
的 var_dump
,我得到:../snippet-ops.php(446) : eval()'d code:7:boolean false
任何人都可以对此有所了解吗?
请尝试以下操作:
add_action( 'woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 3 );
function email_confirmation_display_order_items( $item_id, $item, $order ) {
// On email notifications for line items
if ( ! is_wc_endpoint_url() && $item->is_type('line_item') ) {
$payment_terms = get_post_meta( $item->get_product_id(), 'payment_terms', true );
if ( ! empty($payment_terms) ) {
printf( '<div>' . __("Terms: %s", "woocommerce") . '</div>', $payment_terms );
}
}
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。它应该有效。
相关: