แก้ใน Sources/Subs.php ครับ
แล้วหา
// All the buttons we can possible want and then some, try pulling the final list of buttons from cache first.
หากจะเพิ่มเมนูใหม่ให้เพิ่มโค๊ดด้านล่างแล้วแก้เอาเลยครับ
'name' => array(
'title' => 'Name',
'href' => 'http://www.domain.com/name',
'show' => true,
'sub_buttons' => array(
),
'is_last' => true,
),
ตัวอย่างครับ
'home' => array(
'title' => $txt['home'],
'href' => $scripturl,
'show' => true,
'sub_buttons' => array(
),
),
'name' => array(
'title' => 'Name',
'href' => 'http://www.domain.com/name',
'show' => true,
'sub_buttons' => array(
),
'is_last' => true,
),
'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
'sub_buttons' => array(
),
),
อ้างอิงจาก: http://www.smf.or.ht/index.php?topic=8.0 