在WooCommerce的“我的帐户”页面上添加按钮以订购详细信息

时间:2019-07-01 08:08:04

标签: woocommerce hook-woocommerce

enter image description here

除了“再次订购”按钮外,是否还有Woocommerce钩子/过滤器来添加另一个按钮?我要将其添加到“我的帐户”>“我的订单”>“订单详细信息”页面。

1 个答案:

答案 0 :(得分:0)

有两种方法可以将按钮添加到您的我的帐户页面(在任何WooCommerce的页面中进行更改):

  1. 使用WooCommerce挂钩/过滤器:
add_action('woocommerce_order_details_after_order_table', 'jamy_add_button');

function jamy_add_button($order) {
    /* Your code */
    echo "Your button html code";
}
  1. 覆盖WooCommerce模板:
Copy your `/wp-content/plugins/woocommerce/templates/order/order-details.php` file to `/wp-content/theme/your_theme/woocommerce/order/order-details.php`.

Then edit or add the button to the copied file as your needs.