PDA

View Full Version : Mini Mods - Useful inline contextual links in postbit and member profile


cheat-master30
08-11-2008, 10:00 PM
Needs a lot more stuff, but I have a few neat mods, as partly asked for here:

http://www.vbulletin.com/forum/showthread.php?t=281552

I may also be able to make the edit avatar and profile link icon stuff, but the current stuff is:


Changes post count in postbit to a link to search said member's posts
Changes post count in profile to a link to search said member's posts
Changes blog entry count in profile to a link to see member's blogTemplate Edits:

Postbit:

Find:

<div>
$vbphrase[posts]: $post[posts]
</div>

Replace with:

<div>
$vbphrase[posts]: <a href="search.php?do=finduser&u=$post[userid]">$post[posts]</a>
</div>

memberinfo_block_ministats:

Find:

<dd>$prepared[posts]</dd>

Replace with:

<dd><a href="search.php?do=finduser&u=$prepared[userid]">$prepared[posts]</a></dd>

For Blog Entry search in memberinfo:

blog_member_ministats:

Find:

<dt class="shade">$vbphrase[blog_entries]</dt>
<dd>$prepared[blog_entries]</dd>

Replace with:

<dt class="shade">$vbphrase[blog_entries]</dt>
<dd><a href="blog.php?u=$prepared[userid]">$prepared[blog_entries]</a></dd>
blog.php?u=1


Screens are attached.

cheat-master30
08-12-2008, 09:39 PM
Oh, and by the way, the post counts/blog counts with the underline are the said links.

henrikhansen
08-13-2008, 07:36 AM
Thanks for this.

cheat-master30
08-13-2008, 11:40 AM
No problem.

nirvana43
08-14-2008, 02:28 PM
thank you very much man. Installed and rated. ;)

cheat-master30
08-15-2008, 11:21 PM
No problem. Hope you find this mod useful.