So I haven't done any updates to my site in a while, and we're trying to swap skins for a new site re-release. As I"m going through it I'm realizing just how much I've actually forgotten and I'd really appreciate some help T.T For starters, here is my test site: dbushenannigans.freeforums.net/This is what I would like the profile to have displayed in terms of Custom Profile Fields: I have all the fields set and ready to go, I just can't remember how to get them to link. What I've been doing is going into Admin > Themes > Layout Template > User Profile > Summary Its from that point I just don't know WHAT code to put in. Here's a copy pasta of that code if you need to see it. $[form.header] {if $[user.warning.bar]} <div align="center"><div class="profilecontainer" style="background-color:#75766E;width:802px;"> <table><tr><td class="warning-table-td" >Warning Level: </td><td>$[user.warning.bar]</td></tr></table> </div></div> {/if} <div align="center"> <div class="profiletemplate"> <div class="ptempbg"> <table style="margin-left:5px;"> <tbody> <tr> <td style="width:274px;vertical-align:top;"> <div class="miniprofilebgimg" style="border:8px solid #b59374;outline:1px solid #ccc;background-image: url('https://placeholdit.imgix.net/~text?txtsize=33&txt=250%C3%97350&w=250&h=350');{foreach $[user.mini_custom_field]}{if $[user.mini_custom_field.name] == "250x350 Hover Image"}background-image: url('$[user.mini_custom_field.value]');{/if}{/foreach}background-size:cover;"> </div> <div class="profilecontainer" style="margin-top:20px;font-size:14pt;width:230px;text-transform:uppercase;font-weight:800;"> $[user.name]</div> </td> <td style="width:480px;"> <table> <tbody> <tr> <td colspan="4"> <div class="profilecontainer" style="height:30px;line-height:20pt;width:448px;"> <span class="profileh1"> {if $[user.group]} <div style="color:$[user.group.color];">$[user.group]</div> {else} Unsorted{/if}</span> </div> </td> </tr> <tr> <td> <div class="profilecontainer" style="height:50px;width:348px;"><br> {if $[user.personal_text.message]} $[user.personal_text.message] {else} I'm Speechless!{/if} </div> </td> <td style="vertical-align:top;"> <div class="profileav">$[user.avatar_medium]</div> </td> </tr> <tr> <td> <table> <tbody> <tr> <td style="width:150px;"> <div class="profilecontainer"><a href="$[recent_posts_link.href]">Recent Posts</a></div> </td> <td style="width:200px;"> <div class="profilecontainer" style="margin-left:10px;margin-right:10px;"><a href="$[recent_threads_created_link.href]">Recent Threads</a></div>
</td> <td style="width:146px;"> <div class="profilecontainer"><span style="display:none;">$[user]</span><span class ="money_text"></span><span class="money_symbol"></span><span class="money_amount"></span><img src="http://www.freeiconspng.com/uploads/coin-icon-11.png" style="width:30px;border:none;outline:none;position:absolute;"> </div> </td> </tr> <tr> <td> <div class="profilecontainer" style="width:448px;margin-top:5px;text-transform:uppercase;font-weight:bold;"> {if $[user.is_online]} $[user.name] is online {else} $[user.name] is offline {/if} </div> </td> </tr> </tbody> </table> </td> </tr> <tr> <td> {foreach $[user.mini_custom_field]} {if $[user.mini_custom_field.name] == "MP3-Link"} <div><object width="485" height="25" data="http://flash-mp3-player.net/medias/player_mp3_mini.swf" type="application/x-shockwave-flash"> <param value="#aaa" name="bgcolor"> <param value="mp3=$[user.mini_custom_field.value]&bgcolor=ffffff&loadingcolor=ffffff&buttoncolor=ffffff&slidercolor=ffffff;" name="FlashVars"> </object></div>{/if}{/foreach} </td> </tr> <tr> <table> <tbody> <tr> <td style="width:200px;"> <div class="profilecontainer" style="margin-top:5px;text-transform:uppercase;font-weight:bold;">Ƶ <span class="money_symbol"></span><span class="money_amount"></span> </div> </td> <td> <div class="profilecontainer" style="margin-top:5px;text-transform:uppercase;font-weight:400;margin-left:10px;width:238px;"> Tag @$[user.username]</div> </td> </tr> <tr> <td> <div class="profilecontainer" style="width:448px;margin-top:5px;text-transform:uppercase;font-weight:bold;"> Last Seen: $[user.last_online] </div> </td> </tr> </tbody> </table> </tr> </tbody> </table> </td> </tr></tbody></table> </div></div></div>
$[form.footer]
|