Latest Thread - Forum Home

i have problem. This mod dont show thread... but show, forum, last poster, date / time, replies, views...

How to fix this?

Screenshoot:
attachment.php
 
Seiferek said:
i have problem. This mod dont show thread... but show, forum, last poster, date / time, replies, views...

How to fix this?

this mod will not work, if you have Latest Groups on Forum Home mod installed on your site. So uninstall first Latest Groups on Forum Home mod and re-install Latest Thread on Forum Home mod.
 
bulletin said:
this mod will not work, if you have Latest Groups on Forum Home mod installed on your site. So uninstall first Latest Groups on Forum Home mod and re-install Latest Thread on Forum Home mod.


I had Latest Album Picture, not the Latest Social Groups.. I uninstalled Latest Album Pictire Mod and Installed This Mod.. No luck, Still It is not showing the thread titles. Thread titles are blank.

Someone please post this fix..

http://www.vbulletin.org/forum/showpost.php?p=1683939&postcount=19
 
Hey guy's I found the fixed version :)

Link Removed

I never thought my first post would be such a helpful one LOL.

I can imagine how many of you guys want this plugin. I've been looking for it
for days now.

EDIT:

Sorry guy's, accidently posted TvPano's My Latest Thread Instead of Latest Thread.

Anyway's here's the code fix for Latest Thread.

Code:
If (strlen ($ gthread [title])> $ tvpano_my_ttl)  
     (  
       $gthread[title] = substr($gthread[title], 0, $tvpano_my_ttl);
     )

change that to this:

Code:
If (strlen ($ gthread [title])> $ tvpano_lt_ttl)  
     (  
       $gthread[title] = substr($gthread[title], 0, $tvpano_lt_ttl);
     )

That fixed it for me
 
Back
Top