繁体   English   中英

Woocommerce电子邮件通知中缩略图下方的产品标题

[英]Product title below the thumbnail in Woocommerce email notifications

如何使woocommerce电子邮件中带有产品名称的文本位于产品图片下方? 我希望字母看起来不错。

屏幕截图

更新:如果产品图像显示在电子邮件通知中,则可以尝试以下操作在该图像下方显示产品标题:

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文件中。 它应该工作。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM