问题描述
在每种情况下,我都需要将保留"重命名为待批准",将处理中"重命名为已批准". (顺便说一句,我是DIY商店的老板,而不是开发商)
I need to rename "On Hold" to "Pending Approval" and "Processing" to "Approved", in every instance. (Btw, I'm a diy shop owner, not a developer)
该主题使我占了60%,重命名以下位置的多个订单状态Woocommerce 现在需要解决以下位置:
This topic got me 60% there, Rename multiple order statuses in WoocommerceNow need to address these locations:
- admin>订单,预览弹出窗口(眼睛符号).
- 前端>我的帐户/订单,状态"列.
- 前端> my-account/view-order/x,摘要行.
我的代码:
add_filter( 'wc_order_statuses', 'rename_order_statuses', 20, 1 );
function rename_order_statuses( $order_statuses ) {
$order_statuses['wc-processing'] = _x( 'Approved', 'Order status', 'woocommerce' );
$order_statuses['wc-on-hold'] = _x( 'Pending Approval', 'Order status', 'woocommerce' );
return $order_statuses;
}
add_filter( 'bulk_actions-edit-shop_order', 'custom_dropdown_bulk_actions_shop_order', 20, 1 );
function custom_dropdown_bulk_actions_shop_order( $actions ) {
$actions['mark_processing'] = __( 'Mark Approved', 'woocommerce' );
$actions['mark_on-hold'] = __( 'Mark Pending Approval', 'woocommerce' );
return $actions;
}
foreach( array( 'post', 'shop_order' ) as $hook ) {
add_filter( "views_edit-$hook", 'shop_order_modified_views' );
}
function shop_order_modified_views( $views ){
if( isset( $views['wc-processing'] ) )
$views['wc-processing'] = str_replace( 'Processing', __( 'Approved', 'woocommerce'), $views['wc-processing'] );
if( isset( $views['wc-on-hold'] ) )
$views['wc-on-hold'] = str_replace( 'On hold', __( 'Pending Approval', 'woocommerce'), $views['wc-on-hold'] );
return $views;
}
推荐答案
您的代码由答案代码已经涵盖了所有内容(90%),包括:
Your code made from Rename multiple order statuses in Woocommerce answer code already cover everything (90%), including:
前端>我的帐户/订单,状态"列.
前端>我的帐户/查看订单/x,摘要行
现在要处理管理员>订单,预览弹出窗口(眼睛符号)使用以下代码:
Now to handle Admin > orders, the preview popup (eye symbol) use the following code:
add_filter( 'woocommerce_admin_order_preview_actions', 'filter_admin_order_preview_actions', 10, 2 );
function filter_admin_order_preview_actions( $actions, $order ) {
$actions = array();
$status_actions = array();
if ( $order->has_status( array( 'pending' ) ) ) {
$status_actions['on-hold'] = array(
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_status&status=on-hold&order_id=' . $order->get_id() ), 'woocommerce-mark-order-status' ),
'name' => __( 'On-hold', 'woocommerce' ),
'title' => __( 'Change order status to on-hold', 'woocommerce' ),
'action' => 'on-hold',
);
}
if ( $order->has_status( array( 'pending', 'on-hold' ) ) ) {
$status_actions['processing'] = array(
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_status&status=processing&order_id=' . $order->get_id() ), 'woocommerce-mark-order-status' ),
'name' => __( 'Approved', 'woocommerce' ),
'title' => __( 'Change order status to approved', 'woocommerce' ),
'action' => 'processing',
);
}
if ( $order->has_status( array( 'pending', 'on-hold', 'processing' ) ) ) {
$status_actions['complete'] = array(
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_status&status=completed&order_id=' . $order->get_id() ), 'woocommerce-mark-order-status' ),
'name' => __( 'Completed', 'woocommerce' ),
'title' => __( 'Change order status to completed', 'woocommerce' ),
'action' => 'complete',
);
}
if ( $status_actions ) {
$actions['status'] = array(
'group' => __( 'Change status: ', 'woocommerce' ),
'actions' => $status_actions,
);
}
return $actions;
}
并在悬停时重命名管理订单列表"按钮上的状态:
And to rename the status on Admin order list button when hovered:
add_filter( 'woocommerce_admin_order_actions', 'rename_admin_order_status_action_button', 10, 2 );
function rename_admin_order_status_action_button( $actions, $order ) {
// Display the button for all orders that have a 'processing', 'pending' or 'on-hold' status
if ( isset($actions['processing']) ) {
$actions['processing']['name'] = __( 'Approved', 'woocommerce');
}
return $actions;
}
代码进入您的活动子主题(或活动主题)的function.php文件中.经过测试,可以正常工作.
Code goes in function.php file of your active child theme (or active theme). Tested and works.
这篇关于到处替换订单状态名称,包括Woocommerce管理员订单预览的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!