Woocommerce 中新訂單的郵件中的商品能不能附上商品鏈接,方便客户點擊查看。

正在查看 5 個帖子:1-5 (共 5 個帖子)
  • 作者
    帖子
  • 大熊
    參與者
    • 文章數量: 19
    @qzxx
    樓主

    原來的代碼是這樣的。

    /*** @hooked WC_Emails::email_header() Output the email header*/do_action( 'woocommerce_email_header', $email_heading, $email ); ?><p><?php printf( __( ' 已收到你的訂單,您的訂單如下:', 'woocommerce' ), $order->get_formatted_billing_full_name() ); ?></p><?php/**

    有客户反饋,收到的郵件中產品名稱只有商品名稱,能不能附上商品鏈接,方便點擊查看。

    詩語
    管理員
    • 文章數量: 5,932
    @feibisi

    試一下下面的代碼

    add_filter( 'woocommerce_order_item_name', 'display_product_title_as_link', 10, 2 );
    function display_product_title_as_link( $item_name, $item ) {
    
    $_product = get_product( $item['variation_id'] ? $item['variation_id'] : $item['product_id'] );
    
    $link = get_permalink( $_product->id );
    
    return '<a href="'. $link .'"  rel="nofollow">'. $item_name .'</a>';
    
    }

    添加到你的子主題的裏。

    詩語
    管理員
    • 文章數量: 5,932
    @feibisi

    還有這一段也可以試試,哪個能用用哪個

    add_filter('woocommerce_order_item_name', 'woo_order_item_with_link', 10, 3);
    function woo_order_item_with_link( $item_name, $item, $bool ) {
        $url = get_permalink( $item['product_id'] ) ;
        return '<a href="'. $url .'">'. $item_name .'</a>'; 
    }
    大熊
    參與者
    • 文章數量: 19
    @qzxx
    樓主

    謝謝您,這段測試了可以正常使用的,這樣就方便多了,客户核對商品時,可以直接點擊進去查看了。

    大熊
    參與者
    • 文章數量: 19
    @qzxx
    樓主

    這兩個代碼,全試了,全可以正常使用的。

正在查看 5 個帖子:1-5 (共 5 個帖子)
  • 哎呀,回覆話題必需登錄。

話題信息

  • 當前位於:WooCommerce
  • 4 條回覆
  • 2 個參與人
  • 最後回覆:<a href="https://bbs.weixiaoduo.com/users/qzxx/" title=" 查看大熊的個人資料" class="bbp-author-link"><span class="bbp-author-name"> 大熊</span></a>
  • 上次活動:<a href="https://bbs.weixiaoduo.com/topic/32115/#post-32122" title=" 回覆至:Woocommerce 中新訂單的郵件中的商品能不能附上商品鏈接,方便客户點擊查看。">5 年、 11 月前</a>