[REQ] Modifications

download box bbcode:
http://www.vbteam.info/req-addons-template-modifications/3808-download-box-bbcode.html

GTSmiliebox:
http://www.vbteam.info/vb-3-6-x-add...00-gtsmiliebox-move-smilies-below-editor.html

Colored name in nabar: 3.6.8
http://www.vbteam.info/vb-3-6-x-addons-template-modifications/2696-colored-name-navbar-3-6-8-a.html

Colored name in nabar: 3.7.x
http://www.vbteam.info/vb-3-7-x-addons-template-modifications/2309-colored-name-navbar.html

[Monkey's Works] - Registration Help Popups:
http://www.vbteam.info/req-addons-t...req-memberindex-registration-help-popups.html
(Read second post for MemberIndex bug fix)

Did you even bother to search before you posted?! ;)

Websites Thumbnails:
This is a little modification with the help of iwebtools. This allows Your members to preview a website link before visiting it.

Simply find in Show Thread Template :
PHP:
</body>
</html>

Add before:
PHP:
<!-- website Thumbnails -->
<script language="javascript" src="http://thumbnails.iwebtool.com/src.js?border=004891" type="text/javascript"></script>
<!-- / website Thumbnails -->

Optional:
If you are familiar with HEX color codes, you can match your forum colors by changing the "border=<color-code>" value to a HEX color code.

All done !

--------------------------------------------------------------------------

Last Active in Postbit

Description
This will show when the user was last active on the site in their postbit.

How to Install
Download the product XML. Go into to your ACP --> Plugins & Products --> Download / Upload Plugins. Scroll to the bottom of the page. Browse to the plugin you have just downloaded and click "Import".


Go into your Administrator Control Panel.
Open: Postbit Templates -- > postbit(_legacy)

Find:
PHP:
<div>$post[icqicon] $post[aimicon] $post[msnicon] $post[yahooicon] $post[skypeicon]</div>

Add Below:
PHP:
<if condition="$show['lastactivity']">  
    <div>$vbphrase[last_activity]: $post[lastactivitydate]<br /> 
&nbsp;@ <span class="time">$post[lastactivitytime]</span>&nbsp;</div> 
</if>
 
Back
Top