วิธีรับภาพผลิตภัณฑ์สำหรับเด็กใน Magento Cart
ฉันพยายามรับภาพผลิตภัณฑ์สำหรับเด็กของผลิตภัณฑ์ที่กำหนดค่าได้ซึ่งถูกเพิ่มไว้ในรถเข็นจากลูกค้า ตัวอย่างเช่นหากลูกค้าเพิ่มคู่รองเท้าสีแดงลงในรถเข็นฉันต้องการแสดงสีนั้นในตะกร้าสินค้า ฉันได้ตั้งค่า "แสดงรูปย่อสินค้าตัวเอง" ปัญหาคือฟังก์ชั่นนี้จากส่วนขยายแถบสี 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 == …