重命名WooCommerce订单状态 [英] Renaming WooCommerce Order Status

查看:140
本文介绍了重命名WooCommerce订单状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将WooCommerce订单状态从已完成"重命名为已收到订单".我可以编辑下面位于wc-order-functions.php中的脚本,但是我不希望不修改任何核心文件或使用插件.

I would like to rename the WooCommerce order status from "Completed" to "Order Received". I can edit the script below located in wc-order-functions.php, but I would prefer not to modify any core files or use a plugin.

是否可以用子主题的functions.php文件中的脚本覆盖woocoomerce函数?

Is it possible to override woocoomerce functions with scripts in child theme's functions.php file?

function wc_get_order_statuses() {
  $order_statuses = array(
    'wc-pending'    => _x( 'Pending Payment', 'Order status', 'woocommerce' ),
    'wc-processing' => _x( 'Processing', 'Order status', 'woocommerce' ),
    'wc-on-hold'    => _x( 'On Hold', 'Order status', 'woocommerce' ),
    'wc-completed'  => _x( 'Completed', 'Order status', 'woocommerce' ),
    'wc-cancelled'  => _x( 'Cancelled', 'Order status', 'woocommerce' ),
    'wc-refunded'   => _x( 'Refunded', 'Order status', 'woocommerce' ),
    'wc-failed'     => _x( 'Failed', 'Order status', 'woocommerce' ),
  );
  return apply_filters( 'wc_order_statuses', $order_statuses );
}

推荐答案

只需将订单状态已完成"重命名为已收到订单",这很容易,并且可以通过wc_order_statuses钩子来完成(您可以将此代码段粘贴到您的活动子主题function.php文件):

Just renaming order status "Completed" to "Order Received", it's easy and can be accomplished this way with wc_order_statuses hook (you will paste this snippet in your active child theme function.php file):

add_filter( 'wc_order_statuses', 'wc_renaming_order_status' );
function wc_renaming_order_status( $order_statuses ) {
    foreach ( $order_statuses as $key => $status ) {
        if ( 'wc-completed' === $key ) 
            $order_statuses['wc-completed'] = _x( 'Order Received', 'Order status', 'woocommerce' );
    }
    return $order_statuses;
}

代码进入您的活动子主题(或活动主题)的function.php文件中.经过测试并有效.

Code goes in function.php file of your active child theme (or active theme). Tested and Works.

更新2018 -要重命名,请在订单列表页面中:
•批量操作下拉菜单
•订单状态标签(带有计数)
请参阅: 重命名Woocommerce中的多个订单状态

Update 2018 - To rename, in Order list page:
• the bulk actions dropdown
• the order status tabs (with the count)
See: Rename multiple order statuses in Woocommerce

其他相关参考资料:如何创建自定义woocommerce中的订单状态

这篇关于重命名WooCommerce订单状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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