SMF, Web Design

วิธีการทำและเพิ่มเมนูหน้าแรกและเมนูเว็บบอร์ด SMF

อ่าน: 2,106 ครั้ง
Advertising

 

วิธีการเพิ่มเมนูหน้าแรกและเมนูเว็บบอร์ดกับSMF

ผลลัพธ์จะได้แบบนี้

 

 

smfhome

1. ไฟล์ Index.template.php

หา
// Show the [home] button.

 

เพิ่มไว้ก่อนที่หา
// Show the [main] button.
echo ($current_action=='MainSite' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'MainSite' ? 'active_back' : 'back' , '">
<a href="../">', $txt['MainSite'] ,'</a>
</td>' , $current_action == 'MainSite' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

2. ไฟล์ Modification.thai-utf8.php
หา
?>

เพิ่มไว้ก่อนที่หา
$txt['MainSite']='หน้าแรก';

3. ไฟล์ Modification.english-utf8.php
หา
?>

เพิ่มไว้ก่อนที่หา
$txt['MainSite']='Home';

 

 

4. ไฟล์ index.thai-utf8.php
หา
$txt[103] = 'หน้าแรก';

แทนด้วย
$txt[103] = 'เว็บบอร์ด';

5. ไฟล์ index.english-utf8.php
หา
$txt[103] = 'Home';

แทนด้วย
$txt[103] = 'Webboard';

Advertising
Advertising