Woocommerce在帐户仪表板上向客户显示注释

时间:2019-12-19 11:29:15

标签: wordpress woocommerce

在以下代码中包含此代码:woocommerce / templates / myaccount / view-order.php

defined( 'ABSPATH' ) || exit;
$notes = $order->get_customer_order_notes();
?>
<p>
<?php if ( $notes ) : ?>
    <h2><?php esc_html_e( 'Order updates', 'woocommerce' ); ?></h2>
    <ol class="woocommerce-OrderUpdates commentlist notes">
        <?php foreach ( $notes as $note ) : ?>
        <li class="woocommerce-OrderUpdate comment note">
            <div class="woocommerce-OrderUpdate-inner comment_container">
                <div class="woocommerce-OrderUpdate-text comment-text">
                    <p class="woocommerce-OrderUpdate-meta 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="woocommerce-OrderUpdate-description 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; ?>

它显示了我可以按WC订单发送给客户的注释。该信息位于“我的帐户->订单->查看客户订单”下,但我想在客户仪表板中显示该注释,而不是查看订单。 我尝试将其复制到dashboard.php,但它只是抛出一个错误,并说get_customer_order_notes()为空。

我是php的初学者,这是我的第一个WC网站,因此非常感谢您的帮助。

0 个答案:

没有答案