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

时间:2017-09-11 07:35:37

标签: php wordpress templates woocommerce email-notifications

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

我发现这来自这段代码:

 <?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,
            ) ); ?>

在email-order-details.php模板中,我已经从woocommerce模板文件夹复制到我的子主题。

但是,如何自定义此挂钩&#39; wc_get_email_order_items&#39;或任何其他方式去除价格?

这就是我现在所拥有的:

enter image description here

任何帮助都将受到赞赏,因为我花了这么多时间寻找解决方案。

2 个答案:

答案 0 :(得分:3)

这可以Overriding the following WooCommerce Templates via a Theme完成:

1.模板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.模板emails/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>

所以你会得到这个:

enter image description here

答案 1 :(得分:2)

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