ใช้ description ให้เป็นประโยชน์ครับ แต่ไม่แนะนำให้ไปดึงรูปจากเว็บคนอื่นโดยเฉพาะเว็บร้านค้า เหมือนกัน ระวังมาม่า นะครับ
controller/product/category.php Find description หา html_entity_decode ลบฟังก์ชั่นนี้ออก
แต่ระวังเรื่องตัดคำด้วย ใน เทมเพลต ก็ลบรูปออก
ตัวอย่าง'description' => mb_substr(strip_tags(
html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0,
150) . '..',
ลบ html_entity_decode เพิ่มการตัดคำ 150 เป็น 1500 mb_substr ของคุณอาจจะเป็น substr
'description' => mb_substr(strip_tags($result['description'], ENT_QUOTES, 'UTF-8'), 0, [color=red]1500[/color]) . '..',