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 == '') …