【发布时间】:2021-11-04 04:31:55
【问题描述】:
【问题讨论】:
标签: php wordpress woocommerce wordpress-theming
【问题讨论】:
标签: php wordpress woocommerce wordpress-theming
复制找到的文件
wp-content/plugins/woocommerce/templates/emails/email-order-items.php -> wp-content/themes/your-theme/woocommerce/emails/email-order-items.php
进入您商店的子主题。
请注意,如果您自定义父主题而不是子主题,任何更改都将被主题更新覆盖。
更改 wp-content/themes/your-theme/woocommerce/emails/email-order-items.php 中的代码
之前
<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( $order->get_formatted_line_subtotal( $item ) ); ?>
</td>
之后
<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( $order->get_formatted_line_subtotal( $item ) ); ?> ex. VAT
</td>
【讨论】: