เนื่องจากมีหลายคนถามถึงวิธีติดแบนเนอร์ทั้งข้างบนและข้างล่าง ให้เหมือนกับเว็บ ThaiSMF
วิธีทำ มีดังนี้
ให้สร้างไฟล์ banner.txt แล้วจะใส่แบนเนอร์อะไรก็ตามใจ ก่อนใส่ก็ต้องมี จัดหน้ากลางแบบนี้ด้วย
<div align="center">โค้ด banner</div>
(ถ้าต้องการใส่ทั้งข้างบนและข้างล่าง ก็สร้างไฟล์ banner1.txt และ banner2.txt )
แล้วก็เอาไฟล์ banner.txt ไว้ที่เดียวกับ index.php ของฟอรั่ม (/forum/banner.txt)
เปิดไฟล์ Themes/default/index.template.php
ใส่แบนเนอร์ข้างบนค้นหา
// Show the menu here, according to the menu sub template.
template_menu();
แล้วก็เพิ่ม บรรทัดนี้ ข้างล่างจากที่ค้นหา
include_once('banner1.txt');
เมื่อเสร็จแล้วก็จะเป็นแบบนี้
// Show the menu here, according to the menu sub template.
template_menu();
include_once('banner1.txt');
// The main content should go here.
echo '
<div id="bodyarea" style="padding: 1ex 0px 2ex 0px;">';
ใส่แบนเนอร์ข้างล่างค้นหา
// Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
echo '
แล้วก็เพิ่ม บรรทัดนี้ ข้างบนจากที่ค้นหา
include_once('banner2.txt');
เมื่อเสร็จแล้วก็จะเป็นแบบนี้
</div>';
include_once('banner2.txt');
// Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
echo '