如何在Magento购物车中获得儿童产品图片
我正在尝试获取由客户添加到购物车的可配置产品的子产品图像。 例如,如果客户在购物车中添加了一双红鞋,我想在购物车中显示该颜色。 我已经设置了“显示产品缩略图本身” 问题是颜色样本扩展中的此功能 public function findColorImage($value, $arr, $key, $type) { $found = ''; if(isset($arr[$key])) { $total = count($arr[$key]); if($total>0) { for($i=0; $i<$total;$i++) { if($value == ucwords($arr[$key][$i]))//if it matches the color listed in the attribute { $found = $arr[$type][$i];//return the image src } } } } if ($found == '') …