我在插件“WP ALL EXPORT PRO”和 ACF 中使用 PHP 代码来过滤来自 WooCommerce 的包含相关简单和可变产品(带有 ACF 信息)的特定订单,然后通过 XML 将它们导出到我的履行合作伙伴。 该代码效果很好。
不幸的是,尚未检索到可变产品 T-SHIRTS / HOODIES / SWEATER 的一条信息: 可变产品的订购尺寸(变体尺寸 XS / S / M / L / XL / XXL)。 尺寸在 Woocommerce 中创建为“ATTRIBUTE”,并且应集成到 XML 代码结构中。
在 XML 编辑器/WP ALL 导出中使用当前代码。
<?xml version="1.0" encoding="UTF-8"?>
<orders>
<!-- BEGIN LOOP -->
<order>
<commission>{Bestell ID}</commission>
<production>2</production>
<receiver>
<line1>{Shipping First Name} {Shipping Last Name}</line1>
<line2>{Shipping Company}</line2>
<street>{Shipping Address 1}</street>
<streetnumber>{Shipping Address 2}</streetnumber>
<country_code>{Shipping Country}</country_code>
<zip>{Shipping Postcode}</zip>
<city>{Shipping City}</city>
<email>{Customer Account Email Address}</email>
</receiver>
<items>
[my_get_order_items({Bestell ID})]
</items>
</order>
<!-- END LOOP -->
</orders>
在函数编辑器/WP ALL EXPORT中使用当前的PHP代码。
<?php
function my_get_order_items( $order_id ) {
$order = wc_get_order( absint($order_id) ); // Get the WC_Order object
if ( ! is_a($order, 'WC_Order') ) {
return false; // Exit if not an order
}
$order_details = ""; // Initialize variable as string to store order details
// Loop through order items
foreach ( $order->get_items() as $item ) {
if ( ! ( strpos($item->get_name(), 'KERAMIKTASSE') !== false
|| strpos($item->get_name(), 'BAUMWOLLTASCHE') !== false
|| strpos($item->get_name(), 'T-SHIRT') !== false ) ) {
continue;
}
$product = $item->get_product(); // Get the product object
$product_id = $item->get_product_id(); // Get the product object
$order_details .= "**LT**item**GT**";
$order_details .= "**LT**ID**GT**" . $product->get_sku() . "**LT**/ID**GT**";
$order_details .= "**LT**produktname**GT**" . $item->get_name() . "**LT**/produktname**GT**";
$order_details .= "**LT**amount**GT**" . $item->get_quantity() . "**LT**/amount**GT**";
$order_details .= "**LT**upload**GT**" . maybe_serialize( get_field( 'upload', $product_id ) ) . "**LT**/upload**GT**";
$order_details .= "**LT**size**GT**" . maybe_serialize( get_field( 'size', $product_id ) ) . "**LT**/size**GT**";
$order_details .= "**LT**groesse**GT**" . maybe_serialize( get_field( 'produktgröße', $product_id ) ) . "**LT**/groesse**GT**";
$order_details .= "**LT**material**GT**" . maybe_serialize( get_field( 'material', $product_id ) ) . "**LT**/material**GT**";
$order_details .= "**LT**print**GT**" . maybe_serialize( get_field( 'print', $product_id ) ) . "**LT**/print**GT**";
$order_details .= "**LT**variante**GT**" . maybe_serialize( get_field( 'variante', $product_id ) ) . "**LT**/variante**GT**";
$order_details .= "**LT**category**GT**" . maybe_serialize( get_field( 'category', $product_id ) ) . "**LT**/category**GT**";
//add options to the output
$order_details .= "**LT**Options**GT**";
$order_details .= "**LT**Option**GT****LT**ID**GT**" . "1996" . "**LT**/ID**GT****LT**Value**GT**" . maybe_serialize( get_field( 'value_115', $product_id ) ) . "**LT**/Value**GT****LT**/Option**GT**";
$order_details .= "**LT**Option**GT****LT**ID**GT**" . "2489" . "**LT**/ID**GT****LT**Value**GT**" . maybe_serialize( get_field( 'value_117', $product_id ) ) . "**LT**/Value**GT****LT**/Option**GT**";
$order_details .= "**LT**Option**GT****LT**ID**GT**" . "2056" . "**LT**/ID**GT****LT**Value**GT**" . maybe_serialize( get_field( 'value_118', $product_id ) ) . "**LT**/Value**GT****LT**/Option**GT**";
$order_details .= "**LT**/Options**GT**";
$order_details .= "**LT**/item**GT**";
}
return $order_details;
}
?>
有人知道如何检索“尺寸”并将其集成到我的代码中吗?
要从订单商品(产品变体)获取尺寸信息,您可以简单地使用 WC_Product 方法 get_attribute()。
因此,在您当前的代码中,尝试替换以下行:
$order_details .= "**LT**size**GT**" . maybe_serialize( get_field( 'size', $product_id ) ) . "**LT**/size**GT**";
with (其中“pa_groesse”是“Size”的属性分类):
$order_details .= "**LT**size**GT**" . $product->get_attribute('pa_groesse') . "**LT**/size**GT**";
或者也(其中“GRÖßE”是“Size”的属性名称):
$order_details .= "**LT**size**GT**" . $product->get_attribute('GRÖßE') . "**LT**/size**GT**";
应该可以。