เข้าไป แก้ ใน index.template.php นะครับ
หาตรง
// Work out where we currently are.
$current_action = 'home';
แก้ เป็น
// Work out where we currently are.
$current_action = 'webboard';
แล้วหา ตรง // Show the start of the tab section. อ่ะคับ
แล้ว ลบ อันนี้ ออก
// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
แล้ว เพิ่มอันนี้ เข้าไป
// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="ตรงนี้แก้เป็น part ที่ต้องการนะครับ">หน้าแรก</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
// Show the [webboard] button.
echo ($current_action=='webboard' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'webboard' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'webboard' ? '<td class="maintab_active_' . $last . '"> </td>' : '';