我一直在努力寻找一个钩子,让我可以在 woocommerce 管理订单页面"的顶部添加一个按钮,但到目前为止没有成功.我找到了将操作按钮添加到操作列以及每个订单页面内的挂钩……但不是我现在需要的位置.
如果没有钩子,那么另一种方法.
更具体地说,我附上了一张我所指的地方的图片
有什么建议吗?
因为这与 Wordpress 相关,而不是特定于 Woocommerce,因为订单只是一种自定义帖子类型.因此以下代码将在现有字段和按钮之后的顶部区域显示一个自定义按钮:
add_action( 'manage_posts_extra_tablenav', 'admin_order_list_top_bar_button', 20, 1 );功能 admin_order_list_top_bar_button( $which ) {全球 $typenow;if ( 'shop_order' === $typenow && 'top' === $which ) {?><div class="alignleft 动作自定义"><button type="submit" name="custom_" style="height:32px;"class="button" value=""><?php回声 __( '自定义', 'woocommerce');?></按钮><?php}}
代码位于活动子主题(或主题)的 function.php 文件中.经过测试并有效.
<小时>继续:在woocommerce管理订单页面中的自定义按钮点击上运行一个功能
I have been struggling to find a hook that allows me to add a button to the top of the woocommerce admin "orders page", but so far unsuccessfully. I have found hooks to add action buttons to the action column, as well as inside each orders page ... but not where I need now.
If there is no hook, then an alternative approach.
More specifically, I attach an image with the place I am referring to
Any suggestions?
Because this is related to Wordpress and not specific to Woocommerce as Orders are just a custom post type. so the following code will display a custom button on the top zone just after existing fields and buttons:
add_action( 'manage_posts_extra_tablenav', 'admin_order_list_top_bar_button', 20, 1 );
function admin_order_list_top_bar_button( $which ) {
global $typenow;
if ( 'shop_order' === $typenow && 'top' === $which ) {
?>
<div class="alignleft actions custom">
<button type="submit" name="custom_" style="height:32px;" class="button" value=""><?php
echo __( 'Custom', 'woocommerce' ); ?></button>
</div>
<?php
}
}
Code goes in function.php file of your active child theme (or theme). Tested and works.
Continuation: Run a function on custom button click in woocommerce admin order page
这篇关于在woocommerce的管理订单列表顶部添加一个按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
以编程方式将可下载文件添加到 Woocommerce 产品Add programmatically a downloadable file to Woocommerce products(以编程方式将可下载文件添加到 Woocommerce 产品)
获取今天 Woocommerce 中每种产品的总订单数Get today#39;s total orders count for each product in Woocommerce(获取今天 Woocommerce 中每种产品的总订单数)
在 WooCommerce 和电话字段验证问题中添加自定义注Add Custom registration fields in WooCommerce and phone field validation issue(在 WooCommerce 和电话字段验证问题中添加自定义注册字段
在 Woocommerce 简单产品中添加一个将更改价格的选Add a select field that will change price in Woocommerce simple products(在 Woocommerce 简单产品中添加一个将更改价格的选择字段)
在 WooCommerce 3 中将自定义列添加到管理产品列表Add custom columns to admin products list in WooCommerce 3(在 WooCommerce 3 中将自定义列添加到管理产品列表)
自定义结帐“下订单"按钮输出htmlCustomizing checkout quot;Place Orderquot; button output html(自定义结帐“下订单按钮输出html)