在我的帐户页面中的WooCommerce订阅表下添加一个按钮
问题描述:
我正在使用WooCommerce,并且试图在MyAccount页面中的订阅表下添加一个按钮。在我的帐户页面中的WooCommerce订阅表下添加一个按钮
我试过这个代码,但不工作:
add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button');
function add_switch_button() {
echo "something;
}
你能帮帮我吗?
答
刚刚错过了在你的代码收盘报价东西
add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button');
function add_switch_button() {
echo "something";
}
与WooCommerce和WooCommerce订阅当前版本的测试后”。
您正在使用过时的模板? – helgatheviking
我使用的视图预订由WooCommerce Subscription插件的最新版本提供的模板 –