WooCommerce:根据运输方式自动完成已付款订单
Posted
技术标签:
【中文标题】WooCommerce:根据运输方式自动完成已付款订单【英文标题】:WooCommerce: autocomplete paid orders based on shipping method 【发布时间】:2018-06-26 11:40:17 【问题描述】:我有一个产品,人们可以直接打印(运输方式 1)或选择通过运输服务获取(运输方式 2)。因此,如果他们选择直接打印(运输方式 2),订单应该会自动完成。
是否可以从 WooCommerce 扩展该代码 sn-p?
从我找到的文档中 this
/**
* Auto Complete all WooCommerce orders.
*/
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order');
function custom_woocommerce_auto_complete_order( $order_id )
if ( ! $order_id )
return;
$order = wc_get_order( $order_id );
$order->update_status( 'completed' );
这是有效的解决方案。非常感谢 LoicTheAztec:
add_action( 'woocommerce_thankyou',
'wc_auto_complete_paid_order_based_on_shipping_method', 20, 1 );
function wc_auto_complete_paid_order_based_on_shipping_method( $order_id )
if ( ! $order_id ) return;
// HERE define the allowed shipping methods IDs (can be names or slugs changing the code a bit)
$allowed_shipping_methods = array( '5' );
// Get an instance of the WC_Order object
$order = wc_get_order( $order_id );
// Get the shipping related data for this order:
$shipping_item = $order->get_items('shipping');
$item = reset($shipping_item);
$item_data = $item->get_data();
// Get the shipping method name, rate ID and type slug
$method_rate_id = $item_data['instance_id']; // Shipping method ID
// No updated status for orders delivered with Bank wire, Cash on
delivery and Cheque payment methods.
$avoided_statuses = array( 'bacs', 'cod', 'cheque');
if ( in_array( $order->get_payment_method(), $avoided_statuses ) )
return;
// update status to "completed" for paid Orders and a defined shipping
method ID
elseif ( in_array( $method_rate_id, $allowed_shipping_methods ) )
$order->update_status( 'completed' );
【问题讨论】:
【参考方案1】:首先,
get_post_meta($order_id, '_payment_method', true )
或$order->get_payment_method()
完全相似并且做同样的事情。 不同之处在于,第一个使用 Wordpress 函数从wp_postmeta
表中访问此数据,第二个是WC_Order
方法,它也将访问相同的wp_postmeta
表中的数据……没有一个比另一个更好。
新增强的重访代码(请参阅this thread 了解说明)。
实例 ID 是什么:
例如,如果配送方式费率 ID 为 flat_rate:14
,则实例 ID 为 14
(唯一 ID)
新版本代码:
add_action( 'woocommerce_payment_complete_order_status', 'auto_complete_paid_order_based_on_shipping_method', 10, 3 );
function auto_complete_paid_order_based_on_shipping_method( $status, $order_id, $order )
// HERE define the allowed shipping methods instance IDs
$allowed_shipping_methods_instance_ids = array( '14', '19' );
// Loop through order "shipping" items
foreach ( $order->get_shipping_methods() as $shipping_method )
if( in_array( $shipping_method->get_instance_id(), $allowed_shipping_methods_instance_ids ) )
return 'completed';
return $status;
代码进入活动子主题(或活动主题)的 function.php 文件中。经过测试并且可以工作。
原答案:
下面的答案来自我前段时间做的这个类似的答案:WooCommerce: Auto complete paid orders
add_action( 'woocommerce_thankyou', 'auto_complete_paid_order_based_on_shipping_method', 10, 1 );
function auto_complete_paid_order_based_on_shipping_method( $order_id )
if ( ! $order_id ) return;
// HERE define the allowed shipping methods IDs (can be names or slugs changing the code a bit)
$allowed_shipping_methods = array( 'flat_rate:14', 'flat_rate:19' );
// Get an instance of the WC_Order object
$order = wc_get_order( $order_id );
// Get the shipping related data for this order:
$shipping_item = $order->get_items('shipping');
$item = reset($shipping_item);
$item_data = $item->get_data();
// Get the shipping method name, rate ID and type slug
$shipping_name = $item_data['name']; // Shipping method name
$method_rate_id = $item_data['method_id']; // Shipping method ID
$method_arr = explode( ':', $method_rate_id );
$method_type = $method_arr[0]; // Shipping method type slug
// No updated status for orders delivered with Bank wire, Cash on delivery and Cheque payment methods.
$avoided_statuses = array( 'bacs', 'cod', 'cheque');
if ( in_array( $order->get_payment_method(), $avoided_statuses ) )
return;
// update status to "completed" for paid Orders and a defined shipping method ID
elseif ( in_array( $method_rate_id, $allowed_shipping_methods ) )
$order->update_status( 'completed' );
代码进入活动子主题(或活动主题)的function.php文件中。
经过测试并且有效。
【讨论】:
太棒了! :) 你能告诉我一件事吗?什么是“运输方式类型 slug”?您写道:“// HERE 定义避免运输”,然后将其命名为 $allowed_shipping.... 对吗? @TobS 您可以获取运输方式名称为Flat rate
,方法ID 为flat_rate:18
,而slug 只是flat_rate
(所以是slug 方法类型)……您可以更改代码也有名称而不是 slug 类型或方法 ID...
谢谢你:)。您在代码中的第一条评论是“// 这里定义避免运输......”但我认为您在那里定义了将状态更新为已完成的“允许”运输方法?
已接受。明天试试。我是对的,我必须将“flat_rate:14”更改为我的运输方式吗?如果我只有一个,我可以使用: $allowed_shipping_methods = array('flat_rate:14'); ?非常感谢你:)。
有一个美好的夜晚:)!【参考方案2】:
这是我的工作解决方案(感谢 LoicTheAztec):
add_action( 'woocommerce_thankyou',
'wc_auto_complete_paid_order_based_on_shipping_method', 20, 1 );
function wc_auto_complete_paid_order_based_on_shipping_method( $order_id )
if ( ! $order_id ) return;
// HERE define the allowed shipping methods IDs (can be names or slugs changing the code a bit)
$allowed_shipping_methods = array( '5' );
// Get an instance of the WC_Order object
$order = wc_get_order( $order_id );
// Get the shipping related data for this order:
$shipping_item = $order->get_items('shipping');
$item = reset($shipping_item);
$item_data = $item->get_data();
// Get the shipping method name, rate ID and type slug
$method_rate_id = $item_data['instance_id']; // Shipping method ID
// No updated status for orders delivered with Bank wire, Cash on delivery and Cheque payment methods.
$avoided_statuses = array( 'bacs', 'cod', 'cheque');
if ( in_array( $order->get_payment_method(), $avoided_statuses ) )
return;
// update status to "completed" for paid Orders and a defined shipping method ID
elseif ( in_array( $method_rate_id, $allowed_shipping_methods ) )
$order->update_status( 'completed' );
【讨论】:
就像我之前说的。对不起。我认为它对其他用户的工作方式。【参考方案3】:我想你要找的是$order->has_shipping_method('name_of_method')
发件人:https://docs.woocommerce.com/wc-apidocs/class-WC_Abstract_Order.html#_has_shipping_method)
【讨论】:
不完全。更像: if ( $order->has_shipping_method('bacs') || $order->has_shipping_method('cod') || $order->has_shipping_method('cheque') ) bacs、cod 和 check 是付款方式。我只在前面添加了运费。付款方式应该这样工作...... 啊,当然……哦!在这种情况下,您应该使用'bacs' == $order->get_payment_method()
而不是 'bacs' == get_post_meta($order_id, '_payment_method'
等以上是关于WooCommerce:根据运输方式自动完成已付款订单的主要内容,如果未能解决你的问题,请参考以下文章
根据 Woocommerce 中的运输方式和付款方式添加费用
在 WooCommerce 中自动处理已付款订单而不是自动完成
在 WooCommerce 中禁用基于自定义运输方式的付款方式