Woocommerce 电子邮件通知中的样式订单详细信息 table

Style orders details table in Woocommerce email notifications

我正在使用 WordPress 4.8.1 并使用 bridge 主题。
我在从新订单模板电子邮件中删除价格时遇到了一些问题。
我想删除价格列,但是我删除了总计和小计,但没有得到任何东西来删除带有产品的价格列作为通过文件。

我发现这是来自这段代码:

 <?php 
    echo wc_get_email_order_items( $order, array(
                'show_sku'      => $sent_to_admin,
                'show_image'    => false,
                'image_size'    => array( 32, 32 ),
                'plain_text'    => $plain_text,
                'sent_to_admin' => $sent_to_admin,
            ) ); ?>

在我从 woocommerce 模板文件夹复制到我的子主题的电子邮件订单-details.php 模板中。

但是,如何自定义此挂钩 'wc_get_email_order_items' 或任何其他方式来删除价格?

这是我现在拥有的:

任何帮助将不胜感激,因为我花了很多时间寻找相同的解决方案。

您有两个文件要复制,email-order-details.phpemail-order-items.php。 这两个文件包含您要删除的内容。 email-order-details.php<th> 标签或 table 的 header。 email-order-items.php<td> 标签。请检查这些文件。

这个可以做到Overriding the following WooCommerce Templates via a Theme:

1.Template email/email-order-details.php

  • 您将在第 38 行删除块的位置:
<th class="td" scope="col" style="text-align:<?php echo $text_align; ?>;"><?php _e( 'Price', 'woocommerce' ); ?></th>
  • 这里还有第 50 到 63 行的所有块(删除):
<tfoot>
    <?php
        if ( $totals = $order->get_order_item_totals() ) {
            $i = 0;
            foreach ( $totals as $total ) {
                $i++;
                ?><tr>
                    <th class="td" scope="row" colspan="2" style="text-align:<?php echo $text_align; ?>; <?php echo ( 1 === $i ) ? 'border-top-width: 4px;' : ''; ?>"><?php echo $total['label']; ?></th>
                    <td class="td" style="text-align:<?php echo $text_align; ?>; <?php echo ( 1 === $i ) ? 'border-top-width: 4px;' : ''; ?>"><?php echo $total['value']; ?></td>
                </tr><?php
            }
        }
    ?>
</tfoot>

2.Templateemails/email-order-items.php

  • 您将在第 59 行删除此块的位置:
<td class="td" style="text-align:<?php echo $text_align; ?>; vertical-align:middle; border: 1px solid #eee; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;"><?php echo $order->get_formatted_line_subtotal( $item ); ?></td>

所以你会得到这个: