Show latest threads on showthread
Mod Information
Add A Comment
Edit Settings
Mark as Installed
Nominate for MOTM
Jump To Comments
The Developer
About Developer
Visit Web Site
Version: 1.00, by ThorstenA (Coder/Designer) ThorstenA is online now
Developer Last Online: Feb 2008 Report Post Show Printable Version Email this Page Subscribe to This Mod
vB Version: 3.7.0 Beta 4 Rating: (2 votes - 3.00 average)
Released: 24 Jan 2008 Last Update: Never Installs: 4
Not Supported Template Edits
Do you ever wanted to show latest threads on showthread ? You can do that without products. All you need is to use build-in RSS feed. Here you will be presented all topics within actual forum and all subforums. It's working great!
1. Place this code into template ad_showthread_beforeqr
Code:
Code:
<!-- show latest active threads -->
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%"
align="center">
<tbody><tr><td class="tcat">
<a style="float:$stylevar[align=right]" href="#top" onclick="return toggle_collapse('forumhome_external')"><img
id="collapseimg_forumhome_external"
src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_forumhome_external].gif" alt="" border="0" /></a>
<a href="forumdisplay.php?f=$foruminfo[forumid]">New topics in $foruminfo[title]</a>
</td></tr></tbody>
<tbody id="collapseobj_forumhome_external" style="$vbcollapse[collapseobj_forumhome_external]">
<tr><td class="alt1" width="100%" valign="top">
<div class="smallfont">
<script type="text/javascript" src="external.php?forumids=$foruminfo[childlist]&type=js"></script>
<script language="" type="text/javascript">
<!--
for (var x in threads)
{
document.writeln("<a href=\"showthread.php?t="+threads[x].threadid+"&goto=newpost\"><img class=\"inlineimg\" src=\"$stylevar[imgdir_button]/firstnew.gif\" alt=\"\" border=\"0\" /></a> <a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a> <br />");
}
//-->
</script>
</div>
</td>
</if>
</tr></tbody>
</table>
<!-- / show latest active threads -->
2. Done
*************
Reply To Visitor Message (Profile Comments)
Mod Information
Add A Comment
Edit Settings
Mark as Installed
Nominate for MOTM
Jump To Comments
The Developer
Last Online: Feb 2008
About Developer
Visit Web Site
Version: 1.00, by .Tim (Coder/Designer) .Tim is offline
Developer Last Online: Feb 2008 Report Post Show Printable Version Email this Page Subscribe to This Mod
vB Version: 3.7.0 Beta 3 Rating: (2 votes - 3.00 average)
Released: 27 Dec 2007 Last Update: Never Installs: 21
Not Supported Template Edits Translations
Quick and crude but it works.
Find in template memberinfo_visitormessage:
Code:
Code:
<div class="visitor_message_body">$message[message]</div>
Add after:
Code:
Code:
<div class="smallfont"><a href="member.php?$session[sessionurl]u=$message[postuserid]#visitor_messaging">Reply To Comment</a></div>
Enjoy.
*********************
Default Profile Pic
Mod Information
Add A Comment
Edit Settings
Mark as Installed
Nominate for MOTM
Jump To Comments
The Developer
About Developer
Visit Web Site
Version: 1.00, by BlizzardHQ (Coder) BlizzardHQ is offline
Developer Last Online: Feb 2008 Report Post Show Printable Version Email this Page Subscribe to This Mod
vB Version: 3.7.0 Beta 3 Rating: (1 vote - 5.00 average)
Released: 21 Dec 2007 Last Update: Never Installs: 7
Supported Template Edits
I saw this requested in a thread, so here goes
In MEMBERINFO find:
Code:
Code:
<if condition="$prepared['profilepicurl']">
<td id="profilepic_cell" class="tborder alt2">
<img src="$prepared[profilepicurl]" $prepared[profilepicsize] alt="<phrase 1="$prepared[username]">$vbphrase[xs_picture]</phrase>" />
</td>
Change to:
Code:
Code:
<if condition="$prepared['profilepicurl']">
<td id="profilepic_cell" class="tborder alt2">
<img src="$prepared[profilepicurl]" $prepared[profilepicsize] alt="<phrase 1="$prepared[username]">$vbphrase[xs_picture]</phrase>" />
<else />
<img src="http://www.your-domain.com/images/no-profile-pic.gif">
</td></if>