add_filter( 'woocommerce_account_downloads_column_download-product', 'display_product_image_on_account_downloads' ); 函數 display_product_image_on_account_downloads( $download ) { // 僅定位查看訂單頁面 if ( !is_wc_endpoint_url( '下載' ) ) return; if ( $download['product_id'] > 0 ) { $product = wc_get_product( $download['product_id'] ); $image = $product->get_image( 陣列(324, 194) ); // 商品圖片 $order_id = $order->get_id(); // 訂單編號 if ( $download['product_url'] ) { 回顯 $image 。 '<a href="' .esc_url( $download['product_url'] ) . '">' 。 esc_html( $download['product_name'] ) . '</a>'; 回顯'' 。 esc_html( $order_id ) 。 '</p>'; 回顯'
' 。 esc_html( wc_format_datetime( $order->get_date_created() ) ) . '</p>'; } 別的 { 回顯 $image 。 esc_html( $download['product_name'] ); } } }</pre> <p>產品圖片已顯示,但訂單ID和訂單日期未顯示正確。有沒有辦法實現這個?謝謝。</p>
我仔細檢查了您的程式碼並發現其中有一些問題。所以您可以使用以下版本:
您可以將其新增至您的子主題的functions.php檔案中。