如何解决remove_action 挂钩无法从捐赠表格 GiveWP 中删除信用卡字段
我使用了下面的动作钩子来隐藏字段,但它不起作用。
remove_action( 'give_cc_form','give_get_cc_form' );
谁能帮我解决这个问题
我在 wordpress 网站上使用 GiveWP 插件进行捐赠。
解决方法
GiveWP 有一个非常广泛的代码片段库,其中一个示例展示了如何删除和重新排列字段。这可能是最好的起点: https://github.com/impress-org/givewp-snippet-library/blob/master/form-customizations/customize-fieldset-order.php
,确保在 init 时运行它,并且需要添加与 add_action 中使用的相同的优先级,如果没有则使用 10 并且优先级可以留空
add_action('init','remove_actions');
function remove_actions() {
remove_action( 'give_cc_form','give_get_cc_form',1 ); // Replace the priority with the correct one
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。