在“我的帐户”页面的WooCommerce订阅表下添加一个按钮

时间:2016-01-23 15:55:41

标签: woocommerce subscriptions

我正在使用WooCommerce,而我正在尝试在MyAccount页面中的订阅表下添加一个按钮。

我已尝试使用此代码,但无效:

add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button');

function add_switch_button() {       
  echo "something;             
}

你能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

在“某事

之后错过了代码中的结束语
add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button');

function add_switch_button() {       
    echo "something";             
}

使用当前版本的WooCommerce和WooCommerce订阅进行测试。