我想知道是否有办法将产品缩略图添加到Woocommerce前端的“我的帐户”中的买家“最近订单”页面中。
我正试图寻找某种解决方案,但没有运气如此。
我没有尝试任何东西给你一个代码,只是因为我不知道如何 实际上是这样的。
有人能指出我正确的方向吗?
答案 0 :(得分:4)
您需要修改templates/myaccount/my-orders.php
。将以下代码添加到您希望缩略图显示的位置。
<?php
// Get a list of all items that belong to the order
$products = $order->get_items();
// Loop through the items and get the product image
foreach( $products as $product ) {
$product_obj = new WC_Product( $product["product_id"] );
echo $product_obj->get_image();
}
?>