我正在使用“Woocommerce CSV Export”插件,我刚刚将2个自定义文件添加到我的WC结帐页面中,我想知道是否可以将这些文件添加到导出插件中。
答案 0 :(得分:0)
只需将以下代码添加到“woocommerce-export-csv.php”
中add_filter( 'woocommerce_export_csv_extra_columns', 'sites_add_custom_meta', 10);
并定义你的功能
function sites_add_custom_meta() {
$custom_meta_fields['columns'][] = 'IP Address';
$custom_meta_fields['data'][] = '_customer_ip_address';
return $custom_meta_fields;
}
在此功能中,您需要定义两件事。首先,在columns数组中,您需要定义自定义元字段的标题,然后在数据数组中,您需要定义该字段的数据所在的实际元字段名称。您需要在两个数组中具有相同的顺序才能在右列标题下输出正确的信息。
来源:http://docs.woothemes.com/document/ordercustomer-csv-exporter/#section-4