gpt4 book ai didi

php - 在 WooCommerce 管理订单列表中添加自定义操作按钮

转载 作者:行者123 更新时间:2023-12-04 19:09:11 28 4
gpt4 key购买 nike

我已关注 this instructions为我的 WooCommerce 订单添加自定义订单状态。

我找不到创建自定义操作按钮的方法,该按钮将订单状态从管理订单列表页面更改为我的自定义状态,如下图所示:

This image shows where I want it to be.

我希望为具有“处理”状态的订单显示此自定义操作按钮。

我在 WooCommerce 文档中找不到任何答案。

是否有 Hook 可以应用这些按钮?
我如何将它添加到 function.php ?

谢谢

最佳答案

要恢复,您已创建自定义订单状态“wc-parcial”(使用问题中提供的说明代码),您需要向订单管理列表添加相关操作按钮。

For WooCommerce version 3.3+ check the update in this answer below



您需要使用 中 Hook 的自定义函数woocommerce_admin_order_actions 过滤钩
// Add your custom order status action button (for orders with "processing" status)
add_filter( 'woocommerce_admin_order_actions', 'add_custom_order_status_actions_button', 100, 2 );
function add_custom_order_status_actions_button( $actions, $order ) {
// Display the button for all orders that have a 'processing' status
if ( $order->has_status( array( 'processing' ) ) ) {

// Get Order ID (compatibility all WC versions)
$order_id = method_exists( $order, 'get_id' ) ? $order->get_id() : $order->id;
// Set the action button
$actions['parcial'] = array(
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_status&status=parcial&order_id=' . $order_id ), 'woocommerce-mark-order-status' ),
'name' => __( 'Envio parcial', 'woocommerce' ),
'action' => "view parcial", // keep "view" class for a clean button CSS
);
}
return $actions;
}

// Set Here the WooCommerce icon for your action button
add_action( 'admin_head', 'add_custom_order_status_actions_button_css' );
function add_custom_order_status_actions_button_css() {
echo '<style>.view.parcial::after { font-family: woocommerce; content: "\e005" !important; }</style>';
}

代码位于事件子主题(或主题)的 function.php 文件或任何插件文件中。

此代码经过测试并有效。你会得到:

enter image description here

关于php - 在 WooCommerce 管理订单列表中添加自定义操作按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45516819/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com