如何隐藏“myaccount-order”页面上的取消按钮,跟随支付网关?
Posted
技术标签:
【中文标题】如何隐藏“myaccount-order”页面上的取消按钮,跟随支付网关?【英文标题】:How to hide the Cancel button on the 'myaccount-order' page, follow the payment-gateway? 【发布时间】:2019-10-03 14:06:55 【问题描述】:当“付款方式标题”为“Npay”时,如何隐藏“myaccount-order”页面上的取消按钮?
【问题讨论】:
将此文件 `wp-content\plugins\woocommerce\templates\myaccount\my-orders.php' 移动到您的主题文件夹并签入此文件 【参考方案1】:您可以使用此钩子删除“取消”按钮。 “woocommerce_my_account_my_orders_actions”
add_filter('woocommerce_my_account_my_orders_actions', 'remove_my_cancel_button', 10, 2);
function remove_my_cancel_button($actions, $order)
unset($actions['cancel']);
return $actions;
【讨论】:
以上是关于如何隐藏“myaccount-order”页面上的取消按钮,跟随支付网关?的主要内容,如果未能解决你的问题,请参考以下文章