Quote:
Originally Posted by Murty
this is what i have got for my users profile.
- create a new user profile field with the following details
- Profile Field Type: Single-Line Text Box
- Title: Short Video
- Description: Put a link to a short video here
- Max length of allowed user input: 500
- Display Size: 25
And you can complete the other ones
Then put the following code into your MEMBERINFO template (where you want it) and change the 2 'field24' to the field you just created.
Code:
<if condition="$userinfo[field24]">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr class="tcat">
<td class="text" wrap="" style="" align="left" height="10" valign="center" colspan="2">
<span class=""><strong>$userinfo[username]'s Media </span> </td> </font></strong>
</tr>
<tr class="alt2">
<td align="left" valign="top"> <div align="center"><EMBED SRC="$userinfo[field24]"></div></td>
</tr>
</table>
</if>
let me know if you have any troubles.
|
OMG. This is exactly what I need and been looking for! How and where do I perform this edit because over at vb.com they told how to do it but much more different than yours. Can you elaborate just a little about [field24]? Thank you.