【问题标题】:Add a button under WooCommerce subscription table in My Account page在我的帐户页面的 WooCommerce 订阅表下添加一个按钮
【发布时间】:2016-04-30 03:58:12
【问题描述】:

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

我已尝试使用此代码但无法正常工作:

add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button');

function add_switch_button() {       
  echo "something;             
}

你能帮帮我吗?

【问题讨论】:

  • 您是否使用过时的模板?
  • 我正在使用最新版本的 WooCommerce 订阅插件提供的视图订阅模板

标签: woocommerce subscriptions


【解决方案1】:

只是在“某事”之后错过了代码中的结束引号

add_action('woocommerce_subscription_details_after_subscription_table', 'add_switch_button');

function add_switch_button() {       
    echo "something";             
}

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

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-06-19
    • 2021-06-14
    • 2016-09-24
    • 1970-01-01
    • 2021-06-08
    • 1970-01-01
    • 2019-04-10
    • 2018-05-19
    相关资源
    最近更新 更多