Version: 1.00, by afterlab
Developer Last Online: Jul 2022
Version: 2.2.x
Rating:
Released: 07-30-2002
Last Update: Never
Installs: 32
No support by the author.
Last X Posts In Profile ADD-ON AVAILABLE Total Request Jive
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
This hack was requested by several members such as Crater Seraph and Webmasta X. I decided to come forth and post a hack that i've been working easily on my own forums. Any suggestions, comments, and ideas are welcome at this time.
Changelog
=-=-=-=-=-=-=-=-=-=-=-=
* Added an add-on by request of Velocd. To install the add-on, go to the bottom of the new installation file. Enjoy.
Add-On
=-=-=-=-=-=-=-=-=-=-=-=
* The add-on will display a small preview of a post when your mouse highlights a thread title shown within a user's latest posts in their profile.
More Information
=-=-=-=-=-=-=-=-=-=-=-= Compatibility: This hack will work with vB 2.0.3 and higher. Install Time: 3-8 Minutes. Screenshot:Click Here Add-On Screenshot:Click Here Download: Instructions are in attachment.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
does anybody know how to get this working with maybe an if/then/else statement?
here's what i want to do. i want it to instead of ALWAYS showing the thread title that was posted in, i want it to be something like
if thread title exists, it will use that UNLESS there is also an individual post subject that someone has manually entered along the line, then it would use that? see what I mean? thanks.
Works fine on vB2.3.0 except if user has made no post then it doesn't display the No Posts Made template.. I am also using your Hide Un-entered fields..
Originally posted by 006 does anybody know how to get this working with maybe an if/then/else statement?
here's what i want to do. i want it to instead of ALWAYS showing the thread title that was posted in, i want it to be something like
if thread title exists, it will use that UNLESS there is also an individual post subject that someone has manually entered along the line, then it would use that? see what I mean? thanks.
$getlastposts=$DB_site->query("SELECT thread.title AS threadtitle,thread.threadid,thread.forumid,post.title AS posttitle,post.postid,post.dateline,post.userid,post.visible FROM thread,post WHERE thread.threadid=post.threadid AND post.userid=$userinfo[userid] AND post.visible=1 ORDER BY post.dateline DESC");
And add this:
PHP Code:
$threadtitle=$getlastpost[threadtitle];
$threadtitle=censortext($threadtitle);
$threadtitle=htmlspecialchars($threadtitle);
$threadurl="showthread.php?s=$session[sessionhash]&threadid=$getlastpost[threadid]\" title=\"Go to first post";