Show Social Bookmarks At Top Of Thread

KrazyFire

New Member
This very simple template hack moves the Social Bookmarks from the bottom of a thread to the top.


Instructions

In the SHOWTHREAD template, find and delete:

Code:
<if condition="$bookmarksites">
<!-- social bookmarking links -->
	<br />
	<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" class="tborder" align="center">

	<tr>
		<td class="thead" colspan="$bookmarkcolspan">$vbphrase[bookmarks]</td>
	</tr>
	<tr>$bookmarksites</tr>
	</table>
<!-- / social bookmarking links -->
</if>


In the SHOWTHREAD template, find:

Code:
<!-- toolbar -->


Above it, paste:

Code:
<if condition="$bookmarksites">
<!-- social bookmarking links -->
	<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" class="tborder" align="center">

	<tr>
		<td class="thead" colspan="$bookmarkcolspan">$vbphrase[bookmarks]</td>
	</tr>
	<tr>$bookmarksites</tr>
	</table>
	<br />
<!-- / social bookmarking links -->
</if>


You are all done :)


Version History


v1.0.0 - Initial Release [Thu 20th Dec 2007]
 
Top