根据 将产品描述添加到 WooCommerce 电子邮件通知答案,如何将 产品简短描述 而不是产品描述 (往往较长) 添加到两封电子邮件通知中?
要显示发送给管理员的电子邮件通知的简短说明,请使用以下命令:
// Displaying short product description in email notifications sent to admin
add_action( 'woocommerce_order_item_meta_end', 'product_description_in_new_email_notification', 10, 4 );
function product_description_in_new_email_notification( $item_id, $item, $order = null, $plain_text = false ){
// Only on email notifications
if( is_wc_endpoint_url() ) return;
$product_obj = wc_get_product( $item->get_product_id() );
$short_descr = $product_obj->get_short_description();
if( ! empty($short_descr) ) {
// Display the product description
echo '<div class="product-description"><p>' . $short_descr . '</p></div>';
}
}
代码位于活动子主题(或活动主题)的functions.php 文件中。应该可以。
这是有效的,但是换行符被删除了。我相信这个简短的 desc 被视为 wordpress 的摘录,它在设计上剥离了线条。在电子邮件收据中显示时,有什么方法可以保留简短描述中的换行符吗?