ผู้เขียน หัวข้อ: โชว์รูปภาพจากไฟล์แนบไว้ที่หัวกระทู้  (อ่าน 2483 ครั้ง)

0 สมาชิก และ 1 บุคคลทั่วไป กำลังดูหัวข้อนี้

ออฟไลน์ smf

  • [color=green][i]"ถ้าคุณไม่สามารถอธิบายอย่างง่ายๆ ให้คนอื่นเข้าใจได้แล้วล่ะก็ แสดงว่าคุณยังเข้าใจมันไม่ดีพอ"[/i][/color]
  • Administrator
  • Hero Member
  • *****
  • กระทู้: 1,368
  • พอยท์: 5
    • ดูรายละเอียด
    • pordoo.com
    • อีเมล์
Mod Name:Thumbnail on Topic Listing
http://custom.simplemachines.org/mods/index.php?mod=1151



หลังจากลงmodเสร็จ เราสามารถไปกำหนดขนาดรูปที่โชว์ได้ดังนี้
MessageIndex.template.php
ค้นหา:
โค๊ด: [Select]
echo '<a href="', $topic['first_post']['href'], '"><img src="', $image['url'], '" width="', $image['width'], '" height="', $image['height'], '" alt="" /></a>';แทนที่:
โค๊ด: [Select]
echo '<a href="', $topic['first_post']['href'], '"><img src="', $image['url'], '" width="120" alt="" /></a>';
ตรงwidth="120" สามารถเปลี่ยนเป็นขนาดที่ต้องการ

Default thumbnail where no attachment exists
find
โค๊ด: [Select]
echo '<a href="', $topic['first_post']['href'], '"><img src="', $image['url'], '" width="', $image['width'], '" height="', $image['height'], '" alt="" /></a>';
                        $imagefound = true;
                     }

add after
โค๊ด: [Select]
// MOD to show default thumnail image
                     else
                     {
                        echo '<img src="http://www.site.com/defaultthumbnail.jpg">';
                        $imagefound = true;
                     }
                     // END MOD to show default thumbnail image
« แก้ไขครั้งสุดท้าย: 26 มกราคม 2017, 12:30:29 โดย smf »