I have made a start on this myself. My first step was to get a link in postbits to all the videos uploaded by that user. I put this below where it says your location and how many posts you have:
Code:
<div>
My Videos:
<a href="/forum/video.php?do=viewuser&$session[sessionurl]u=$post[userid]">Video Directory</a>
</div>
So, this says: My Videos: Video Directory <------- The last part is a link to videos uploaded by that user. In preference, what I want it to say instead is the number of videos that person has uploaded and make that number clickable. I am trying to base it on this code from a photoplog hack:
Code:
<div>
My $vbphrase[photoplog_gallery]:
<if condition="$post[photoplog_filecount]">
<a href="/photos/index.php?$session[sessionurl]u=$post[userid]">$post[photoplog_filecount]</a>
<else />
$post[photoplog_filecount]
</if>
</div>
Is there anyone who could help fill in the blanks here?
Thanks