PDA

View Full Version : Truncate Thread Title + Username


SS9267547
01-28-2005, 04:42 AM
I'm trying to get the thread title and username to truncate in the forumdisplay.php but I can't find any code for it, just for forumhome. Would any one know what I would have to strlen to make it work? Just want to have like 20 characters for them and then add '...' at the end. Thanks. :ermm:

SS9267547
01-29-2005, 11:42 PM
So any body at all have a clue where to start? Which file to look at? forumdisplay.php? functions_forumdisplay.php? functions_forumlist.php?

miz
01-30-2005, 12:40 AM
in forumdisplay :

FIND :

while ($thread = $DB_site->fetch_array($threads))
{ // AND $counter++<$perpage)

// build thread data
$thread =process_thread_array($thread, $lastread, $foruminfo['allowicons']);



below Add :


$thread['title'] = "newthread title";
/*
or as you code means
$titlecount = strlen($thread['title'])

if ($titlecount > 20)
{
$thread['title'] = cut the title here
}

*/





btw worng forum

SS9267547
01-30-2005, 12:53 AM
Thanks for the reply. Sorry about posting here, which forum would have been bettter to ask?

Okay I just need to get more sleep beucase I had it working before just didn't, been upload the wrong files to the server lol. Anyway any one who needs those changes can go to the following links. :D

Username Hack: https://vborg.vbsupport.ru/showthread.php?t=75417
Thread Title Hack: https://vborg.vbsupport.ru/showthread.php?t=75418

miz
01-30-2005, 02:52 PM
did you used my way ?

SS9267547
01-30-2005, 08:33 PM
I couldn't get that to work, but I think that would be since I was uploading the wrong files which I noticed this morning, working to many hours lol. Thanks for your help tho!