จากกระทู้ http://www.thaiseoboard.com/index.php?topic=40499.0
จะเรียงตามวันที่ตั้งกระทู้ ถ้าอยากให้เรียงแบบนี้เฉพาะบางห้องสามารถทำได้รึป่าวครับ ที่ลองปรับดูจะเรียงแบบวันที่ทุกห้อง
แต่ให้ห้องอื่นๆมีคนตอบกระทู้ก็เลื่อนขึ้นมาเหมือนเดิม
ขอบคุณครับ :wanwan017:
เงียบมากก :P
ดันอีกสักที :wanwan019:
ใช้ได้กับ บอร์ดที่มี URL รูปแบบนี้ w ww.xxxxxx.com/index.php?board=1.0
?board=1.0
ID บอร์ด คือ 1
เปิดไฟล์ Sources/MessageIndex.php
หา
// They didn't pick one, default to by last post descending.
if (!isset($_REQUEST['sort']) || !isset($sort_methods[$_REQUEST['sort']]))
{
$context['sort_by'] = 'last_post';
$_REQUEST['sort'] = 'ID_LAST_MSG';
$ascending = isset($_REQUEST['asc']);
}
แทนที่ด้วย
// They didn't pick one, default to by last post descending.
if (!isset($_REQUEST['sort']) || !isset($sort_methods[$_REQUEST['sort']]))
{
$id = $_GET[board];
$context['sort_by'] = 'last_post';
if($id==1 || $id==2 || $id==3)
$_REQUEST['sort'] = 'ID_TOPIC';
else
$_REQUEST['sort'] = 'ID_LAST_MSG';
$ascending = isset($_REQUEST['asc']);
}
อยากให้บอร์ดไหนเรียงตามวันที่ตั้งก็ให้แก้
$id==1 || $id==2 || $id==3
ตาม ID บอร์ด
มี mod นี่ฮะ ?
sort board อะไรซักอย่าง ลองหาคำว่า sort ไปที่เว็ป mod smf เอาเลยครับ
อ้างถึงจาก: nut_anek ใน 18 ตุลาคม 2013, 19:51:45
ใช้ได้กับ บอร์ดที่มี URL รูปแบบนี้ w ww.xxxxxx.com/index.php?board=1.0
?board=1.0
ID บอร์ด คือ 1
เปิดไฟล์ Sources/MessageIndex.php
หา
// They didn't pick one, default to by last post descending.
if (!isset($_REQUEST['sort']) || !isset($sort_methods[$_REQUEST['sort']]))
{
$context['sort_by'] = 'last_post';
$_REQUEST['sort'] = 'ID_LAST_MSG';
$ascending = isset($_REQUEST['asc']);
}
แทนที่ด้วย
// They didn't pick one, default to by last post descending.
if (!isset($_REQUEST['sort']) || !isset($sort_methods[$_REQUEST['sort']]))
{
$id = $_GET[board];
$context['sort_by'] = 'last_post';
if($id==1 || $id==2 || $id==3)
$_REQUEST['sort'] = 'ID_TOPIC';
else
$_REQUEST['sort'] = 'ID_LAST_MSG';
$ascending = isset($_REQUEST['asc']);
}
อยากให้บอร์ดไหนเรียงตามวันที่ตั้งก็ให้แก้
$id==1 || $id==2 || $id==3
ตาม ID บอร์ด
ขอบคุณครับ +1
:o :o :oอยากรู้ด้วยคนคัฟ