จะเปลี่ยนลิ้งของเมนู smf ยังไง
แก้ใน 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(
),
),