答案 0 :(得分:0)
已更新:如果产品图像显示在电子邮件通知中,则可以尝试以下操作在该图像下方显示产品标题:
add_filter( 'woocommerce_order_item_name', 'product_title_under_thumbnail_emails', 10, 3 );
function product_title_under_thumbnail_emails( $item_name, $item, $is_visible ) {
// Targeting view order pages only
if( is_wc_endpoint_url() )
return $item_name;
// Get the WC_Product object (from order item)
$product = $item->get_product();
if( $product->get_image_id() > 0 && $is_visible )
$item_name = '<br>' . $item_name;
return $item_name;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。应该可以。