如何从钩子woocommerce_subscription_totals_table中删除get_subscription_totals_template函数

时间:2019-05-30 12:56:11

标签: woocommerce woocommerce-subscriptions

我想用我的Subscription Totals表格的插件版本替换WooCommerce Subscriptions给出的Subscription Totals。

在WooCommerce Subsciptions插件的class-wcs-template-loader.php中,有一行加载了订阅总数模板

add_action( 'woocommerce_subscription_totals_table', array( __CLASS__, 'get_subscription_totals_template' ) );

我正在尝试从挂钩中删除该函数,并将其替换为我自己的模板版本。但这不起作用!

我已经在插件文件中写了以下内容

remove_action( 'woocommerce_subscription_totals_table', array( __CLASS__, 'get_subscription_totals_template' ) );

但它不起作用。

1 个答案:

答案 0 :(得分:0)

改为放置

remove_action( 'woocommerce_subscription_totals_table', array( 'WCS_Template_Loader', 'get_subscription_totals_template' ) );