我安装了 WooCommerce 自定义订单数据插件以在结帐完成后创建自定义字段。在自定义插件中,我使用 woocomerce_thankyou-hook 从订单中收集一些数据并将其作为字符串保存到 $order->custom->officer_text。
我需要将该自定义数据打印到 admin-new-order-mail,但我不知道该怎么做。
echo $order->custom->officer_text
在 admin-new-order-mail.php 中不起作用。
我可以打印感谢页面上的数据,所以我知道,它就在那里。但是电子邮件模板没有运气。
我如何让它工作?
编辑:
我忘了发布我的自定义插件的代码。
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
global $woocommerce;
// Action after order is submitted
add_action('woocommerce_thankyou', 'woocommerce_officer_data');
// function to populate a custom field in $order
function woocommerce_officer_data($order_id) {
$order = new WC_Order( $order_id );
// create custom field
WC_CustomOrderData::extend($order);
$order->custom->officer_text = '';
$officer = '';
// get date and format
$date = DateTime::createFromFormat('Y-m-d H:i:s', $order->order_date);
$orderdate = $date->format('d.m.Y');
$ordertime = $date->format('H:i:s');
$officer .= '##Officer-START##<br>Datum:' . $orderdate . '<br>Zeit:' . $ordertime . '<br>';
$officer .= $order_id . '|' . $order_id . '|' . $order->billing_first_name . '|' . $order->billing_last_name . '|';
$officer .= $order->billing_country . '|' . $order->billing_postcode . '|' . $order->billing_city . '|' ;
$officer .= $order->shipping_address_1 . '|' . $order->billing_email . '|' . $order->billing_phone . '|' ;
$order->custom->officer_text = $officer;
$order->custom->save();
echo $order->custom->officer_text;
}
}
该字段在 ul.order_details.bacs_details 之后打印
但如果我在thankyou.php 上打印_r($order),自定义数据不存在,.
插件中的 print_r($order->custom) 给了我这个:
WC_CustomOrderData Object
(
[order_id:WC_CustomOrderData:private] => 241
[fields:WC_CustomOrderData:private] => Array
(
[officer_text] => ##Officer-START##
Datum:09.10.2013
Zeit:12:00:38
241|241|Peter|Petersen|DE|11111|Xtown|Ystreet 53|foo@example.de||01xx 654 xxx xx|
)
)
我很高兴,我到目前为止,因为我不是一个真正的编码器,但我不知道如何控制我的第一个小插件的输出。因此,如果有人可以向我展示“最佳实践”解决方案,那就太好了。