將滑鼠移到一篇主題的連結上面可以讓你預覽主題裡面的內容.
In MessageIndex.template.php:
Find:
', $topic['first_post']['link'];
Replace with:
<span title="', $topic['first_post']['preview'], '">', $topic['first_post']['link'], '</span>';
如果你有在外掛管理下載最新的RC2更新檔, 你可以不用修改下面的檔案.In Sources/MessageIndex.php:
Find:
$row['firstBody'] = substr($row['firstBody'], 128) . '...';
$row['lastBody'] = strip_tags(strtr(doUBBC($row['lastBody'], $row['lastSmileys']), array('<br />' =>
' ')));
if (strlen($row['lastBody']) > 128)
$row['lastBody'] = substr($row['lastBody'], 128) . '...';
Replace with:
$row['firstBody'] = substr($row['firstBody'], 0, 128) . '...';
$row['lastBody'] = strip_tags(strtr(doUBBC($row['lastBody'], $row['lastSmileys']), array('<br />' =>
' ')));
if (strlen($row['lastBody']) > 128)
$row['lastBody'] = substr($row['lastBody'], 0, 128) . '...';
原文:
http://www.simplemachines.org/community/index.php?topic=18251.0