vForums Support > Programming & Coding :: Code Requests & Support :: > [F] Avatar PM Link
[F] Avatar PM Link - Posted By -Sinister- (that1dude) on 13th Apr 08 at 5:44pm
Can someone make me a code that makes the avatar of a user the link to PM them? Like when you click on their avatar, you can send them a PM.
Re: Avatar PM Link - Posted By Michael (wrighty) on 13th Apr 08 at 6:15pm
Go to: => Mini Profile Template
change {avatar} to:
<script>
var a = '{display_name}';
var x = (a.match(/view_profile\/user\/(.+?)(\/|"|\/")/))?RegExp.$1 : '';
document.write('<a href="/action/pm_send/to/'+x+'">{avatar}</a>');
</script>
Re: Avatar PM Link - Posted By -Sinister- (that1dude) on 13th Apr 08 at 6:20pm
Thanks Wrighty!