我们正在使用 woocommerce 订单跟踪简码。这是我的 woocommerce 订单跟踪.php 文件。我们通过订单 ID 和电子邮件跟踪访客用户的订单。我们可以在这里添加取消订单按钮,该按钮可以取消访客用户的订单吗?
<?php if ( $notes ) : ?>
<h2><?php esc_html_e( 'Order updates', 'woocommerce' ); ?></h2>
<ol class="commentlist notes">
<?php foreach ( $notes as $note ) : ?>
<li class="comment note">
<div class="comment_container">
<div class="comment-text">
<p class="meta"><?php echo date_i18n( esc_html__( 'l jS \o\f F Y, h:ia', 'woocommerce' ), strtotime( $note->comment_date ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
<div class="description">
<?php echo wpautop( wptexturize( $note->comment_content ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
</li>
<?php endforeach; ?>
</ol>
<?php
endif; ?>
<?php do_action( 'woocommerce_view_order', $order->get_id() ); ?>
这是订单详情页面的视图。在这里我想为访客用户添加取消订单按钮
aluckdog