如何从“谢谢”页面删除账单地址?

时间:2019-02-18 22:43:21

标签: php woocommerce

因此,我想从“谢谢”页面中删除帐单邮寄地址。我正在使用wordpress,主题为Impreza。

我已将.woocommerce-customer-details定位为目标,并设置为显示:none;在google inspector模式下可以使用,但是保存并刷新后仍然显示。而且我检查了woo-commerce模板文件,发现order-details-customer.php正在生成信息。我添加了一个类来删除该部分,但它仍然显示。

Woocommerce thank you page

1 个答案:

答案 0 :(得分:0)

在主题中找到一个名为woocommerce的文件夹(如果不存在),然后创建文件夹:

复制此文件

/wp-content/plugins/woocommerce/templates/checkout/thankyou.php

并将其粘贴到您的活动主题目录中

/wp-content/themes/activetheme/woocommerce/checkout/thankyou.php

并删除此

<ul class="woocommerce-thankyou-order-details order_details">
    <li class="order">
        <?php _e( 'Order Number:', 'woocommerce' ); ?>
        <strong><?php echo $order->get_order_number(); ?></strong>
    </li>
    <li class="date">
        <?php _e( 'Date:', 'woocommerce' ); ?>
        <strong><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></strong>
    </li>
    <li class="total">
        <?php _e( 'Total:', 'woocommerce' ); ?>
        <strong><?php echo $order->get_formatted_order_total(); ?></strong>
    </li>
    <?php if ( $order->payment_method_title ) : ?>
    <li class="method">
        <?php _e( 'Payment Method:', 'woocommerce' ); ?>
        <strong><?php echo $order->payment_method_title; ?></strong>
    </li>
    <?php endif; ?>
</ul>
<div class="clear"></div>

并删除此

<?php do_action( 'woocommerce_thankyou_' . $order->payment_method, $order->id ); ?>
<?php do_action( 'woocommerce_thankyou', $order->id ); ?>