【发布时间】:2015-09-13 16:27:32
【问题描述】:
我想知道是否有办法将产品缩略图添加到 Woocommerce 前端“我的帐户”中买家的“最近订单”页面。
我一直在努力寻找某种解决方案,但没有运气。
我没有尝试任何方法给你一个代码,只是因为我不知道如何 实际去做吧。
有人能指出我正确的方向吗?
【问题讨论】:
标签: php wordpress woocommerce
我想知道是否有办法将产品缩略图添加到 Woocommerce 前端“我的帐户”中买家的“最近订单”页面。
我一直在努力寻找某种解决方案,但没有运气。
我没有尝试任何方法给你一个代码,只是因为我不知道如何 实际去做吧。
有人能指出我正确的方向吗?
【问题讨论】:
标签: php wordpress woocommerce
您需要编辑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();
}
?>
【讨论】:
foreach ( $customer_orders as $customer_order ) { 循环中
get_image,默认是shop_thumbnail,所以如果你需要大图使用echo $product_obj->get_image( 'large' );