gpt4 book ai didi

php - 从 Woocommerce 的电子邮件通知中删除列数量

转载 作者:行者123 更新时间:2023-12-05 01:16:44 25 4
gpt4 key购买 nike

在 Woocommerce 中,我想从电子邮件通知中删除 Quantity 列,如下面的屏幕截图所示:

感谢任何帮助。

最佳答案

This can be done Overriding the following WooCommerce Templates via a Theme.

相关模板email/email-order-items.phpemails/email-order-details.php .

将此模板复制到 yourtheme/woocommerce/emails/email-order-items.php 后还有yourtheme/woocommerce/emails/email-order-details.php打开编辑它们:

1) 对于模板email/email-order-items.php :

  • 更改 第 78 行 <td colspan="3"<td colspan="2"

  • 从第 66 行到第 68 行删除以下代码块:

    <td class="td" style="text-align:<?php echo esc_attr( $text_align ); ?>; vertical-align:middle; font-family: 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;">
    <?php echo wp_kses_post( apply_filters( 'woocommerce_email_order_item_quantity', $item->get_quantity(), $item ) ); ?>

2) 对于模板email/email-order-details.php :

  • 更改 第 70 行 <th class="td" scope="row" colspan="2"<th class="td" scope="row"

  • 更改 第 79 行 <th class="td" scope="row" colspan="2"<th class="td" scope="row"

  • 删除第 45 行的代码块:

    <th class="td" scope="col" style="text-align:<?php echo esc_attr( $text_align ); ?>;"><?php esc_html_e( 'Quantity', 'woocommerce' ); ?></th>

保存两个模板,你就完成了......你会得到类似的东西:

enter image description here

关于php - 从 Woocommerce 的电子邮件通知中删除列数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52771772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com