如何在 Woocommerce 电子邮件订单中显示所需的属性
How to display desired attributes in Woocommerce email order
目前,我的电子邮件订单显示了产品页面上的所有属性。但是,我只想显示一些属性,例如颜色和交货。
/templates/emails/email-order-items.php
这是代码...我需要做哪些更改?
// Variation
if ( $item_meta->meta ) {
echo '<br/><small>' . nl2br( $item_meta->display( true, true ) ) . '</small>';
}
// Variation
if ( $item_meta->meta ) {
echo '<br/><small>' . nl2br( $_product->get_attribute( 'delivery' ) ) . '</small>';
}
这段代码非常有效!!哇感谢我自己 B-)...
目前,我的电子邮件订单显示了产品页面上的所有属性。但是,我只想显示一些属性,例如颜色和交货。
/templates/emails/email-order-items.php
这是代码...我需要做哪些更改?
// Variation
if ( $item_meta->meta ) {
echo '<br/><small>' . nl2br( $item_meta->display( true, true ) ) . '</small>';
}
// Variation
if ( $item_meta->meta ) {
echo '<br/><small>' . nl2br( $_product->get_attribute( 'delivery' ) ) . '</small>';
}
这段代码非常有效!!哇感谢我自己 B-)...