将产品缩略图添加到我的帐户 - 最近的订单 - Woocommerce
Add Product Thumbnail to My Account - Recent Orders - Woocommerce
我想知道是否可以在 Woocommerce 前端的 'My Account' 中将产品缩略图添加到买家的 'Recent Orders' 页面中。
我一直在努力寻找某种解决方案,但一直没有运气。
我没有尝试给你一个代码,只是因为我不知道如何
实际去做这个。
有人能给我指出正确的方向吗?
您需要编辑 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();
}
?>
我想知道是否可以在 Woocommerce 前端的 'My Account' 中将产品缩略图添加到买家的 'Recent Orders' 页面中。
我一直在努力寻找某种解决方案,但一直没有运气。
我没有尝试给你一个代码,只是因为我不知道如何 实际去做这个。
有人能给我指出正确的方向吗?
您需要编辑 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();
}
?>