2017-09-11 96 views
1

我正在使用WordPress 4.8.1并使用桥梁主题。
我面临一些关于从新订单模板电子邮件中删除价格的问题。
我想删除价格列,但是我删除了总额和小计,但没有收到任何东西来删除价格列与产品通过文件。在Woocommerce电子邮件通知中自定义订单详细信息表

我发现这是从这个代码来:

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

在电子邮件阶details.php我已经复制到从woocommerce模板文件夹我的孩子主题模板。

但是,如何定制这个钩子'wc_get_email_order_items'或任何其他方式来删除价格?

这是我现在有:我花了这么多时间找到了相同的解决方案

enter image description here

任何帮助将不胜感激。

+0

你就不能覆盖的电子邮件模板,并删除价格栏? – Kris

+0

我已经将模板覆盖到了我的主题中,但价格来自上面提到的代码,我找不到可以删除价格列的HTML –

+0

您应该搜索已显示在电子邮件右侧的字符串现在在主题内。电子邮件模板应该出现在主题或插件本身中。您将能够根据需要覆盖模板。 – Kris

回答

2

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

1.Template orders/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.Template 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

+0

非常感谢你@Reigel 最后完成:-)错误我正在做这个工作,我正在电子邮件文件夹下的文件夹“Plain”下修改文件email-order-items.php。 –

+0

Thankyou @LoicTheAztec的详细说明。 :-) –

+0

@哈里它是一样的东西,但可能不是相同的路线......你需要检查并尝试自己。 – LoicTheAztec

1

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

相关问题