我想在Woocommerce订单列表页面的预览订单末尾添加一些自定义数据。
为此,我尝试使用钩子“ woocommerce_admin_order_preview_end”。但是无法将任何参数传递给该操作。
response.body = "����JFIF��C..."
response.headers["content-type"] = image/jpeg
有人对此有想法吗?我被困住了。
答案 0 :(得分:3)
您无法获得订单对象,因为它是通过Ajax加载特定数据的模板,并且没有 chart: {
type: 'pie',
events: {
load: function() {
var series = this.series[0];
setTimeout(function(){
(series.points).forEach(function(point, i){
if (point.y < 5) {
point.update({dataLabels:{distance: 2}});
}
});
}, 200);
}
}
}
操作挂钩的参数。
相反,过滤器钩子<android.support.v7.widget.AppCompatEditText
android:background="@null"
android:textCursorDrawable="@color/cursorColor"/>
将允许您首先添加一些自定义数据,这些数据将可以在woocommerce_admin_order_preview_end
操作钩子中调用并显示。
代码:
woocommerce_admin_order_preview_get_order_details
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。