私はwoocommerceの初心者です。私は/themes/mytheme/woocommerce/emails/email-order-details.php &/themes/mytheme/woocommerce/emails/email-orderの電子メールテンプレートから価値のある列を削除しました。単にコードwoocommerce製品注文の電子メールテーブルをカスタマイズするにはどうすればよいですか?
<th class="td" scope="col" style="text-align:left;"><?php _e('Product', 'woocommerce'); ?></th>
<!--<th class="td" scope="col" style="text-align:left;"><?php _e('Quantity', 'woocommerce'); ?></th>-->
<th></th>
<th class="td" scope="col" style="text-align:left;"><?php _e('Price', 'woocommerce'); ?></th>
そして
<tr>
<th class="td" scope="col" style="text-align:left;"><?php _e('Product', 'woocommerce'); ?></th>
<th class="td" scope="col" style="text-align:left;"><?php /*_e('Quantity', 'woocommerce'); */ ?></th>
<th class="td" scope="col" style="text-align:left;"><?php _e('Price', 'woocommerce'); ?></th>
</tr>
がのように見えた後、以下のようにコメントすることにより -items.phpちょうどPHPタグの間の部分を削除し、代わりに、行全体をコメントの
<th class="td" scope="col" style="text-align:left;"><?php _e('Product', 'woocommerce'); ?></th>
<th class="td" scope="col" style="text-align:left;"><?php _e('Price', 'woocommerce'); ?></th>
:
– RST