Quote:
Originally Posted by Spank
The variable is
Code:
$prepared[profilepicurl]
which you'll need to put into an image url, along with an if condition so that nothing displays if a user doesn't have a profile pic. Here's the whole shebang:
Code:
<if condition="$prepared['profilepicurl']">
<td id="profilepic_cell" class="tborder alt2"><img src="$prepared[profilepicurl]" $prepared[profilepicsize] alt="<phrase 1="$prepared[username]">$vbphrase[xs_picture]</phrase>" /></td>
</if>
|
I think that is the code in the template
memberinfo_block_profilepicture. It'd be best if he just used
Code:
$blocks[profile_picture]
To call the appropriate code from
memberinfo_block_profilepicture, instead of replicating/inlining the code. That way, if there's a tempate update in the future, it doesn't break things unnecessarily upon "revert".