将 COD 默认订单状态更改为“暂停"而不是“处理"在 Woocommerce [英] Change COD default order status to "On Hold" instead of "Processing" in Woocommerce

查看:20
本文介绍了将 COD 默认订单状态更改为“暂停"而不是“处理"在 Woocommerce的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要帮助解决与插件WooCommerce Pay for Payment"相关的问题,该插件计算了一些额外的运费.问题是,这个插件会自动设置处理"状态,这会导致感谢电子邮件付款(在本地付款的情况下)并且不发送有关新订单的电子邮件通知,因此客户感到困惑(我没有发送任何money 并且我收到了感谢您的付款"的电子邮件).

我尝试了这个解决方案:

<块引用>

所以支付网关设置的默认订单状态现在是暂停"而不是处理中"

I need help with a problem-related to plugin "WooCommerce Pay for Payment" which counting some extra fee in shipping. Problem is, that this plugin sets automatically "processing" status in order which causes thanking email for payment (in case of local payment) and don't send email notification about a new order, so customer is confused (I didn't send any money and I received email "thanks for your payment").

I tried this solution: Set WooCommerce order status when order is created from processing to pending

But it only changes order status back to "on-hold" but sends email thank for payment anyway.

Only one thing that I need is to send to the customer in every new order email about a new order, nothing more (I would like to change status to "processing" manually).

Thank you for help, I have no idea how to resolve because I couldn't find PHP file causing a change of status in the plugin.

EDIT: Sorry to all. This was problem of COD in woocommerce plugin. Not Pay for payment as I mentioned. Woocommerce COD automatically set "processing" status.

I found solution for this on github:here

Its the first code.

Based on the answer to this question, this code worked fine for me:

function sv_wc_cod_order_status( $status ) {
    return 'on-hold';
}
add_filter( 'woocommerce_cod_process_payment_order_status', 'sv_wc_cod_order_status', 15 ); 

解决方案

Updated: The code that you found in Github is outdated, clumsy and complicated, since there is a dedicated filter hook now. You should better try this lightweight and effective code, that will set the default order status for "Cash on delivery" payment gateway (COD) to "On Hold":

add_filter( 'woocommerce_cod_process_payment_order_status', 'change_cod_payment_order_status', 10, 2 );
function change_cod_payment_order_status( $order_status, $order ) {
    return 'on-hold';
}

Code goes in functions.php file of your active child theme (active theme). Tested and works.



So the default order status set by the payment gateway is now "On Hold" instead of "Processing"

这篇关于将 COD 默认订单状态更改为“暂停"而不是“处理"在 Woocommerce的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆