FASEOFMARS |
05-12-2011 10:00 PM |
Home Page or This Page - Member Profile
1 Attachment(s)
hi, this is my first little mod i want to share with everyone, not a coder or anything i just like to pay attention to detail. I often find myself stripping away at vbulletin, re-adjusting alot of the templates..
"This Page" in the contact section of the member profile seems like a filler to me, basically if your member has no contact information up this little thing will happily fill the space for you.. which is all it should be, as giving the page you are viewing as contact information isn't really logical..
For the most part its an irrelevant link, that you can easy get from the address bar lol, so why not replace it with the members home-page if he happens to select one?
i have achieved this by editing the template: memberinfo_block_contactinfo
code for This Place
Code:
<dl class="blockrow stats">
<dt>{vb:rawphrase this_page}</dt>
<dd> <a href="{vb:raw prepared.profileurl}{vb:raw prepared.homepage}">{vb:raw prepared.profileurl}</a></dd>
</dl>
replace with
Code:
<vb:if condition="$prepared['homepage']">
<dl class="blockrow stats">
<dt>Home Page</dt>
<dd> <a href="{vb:raw prepared.homepage}">{vb:raw prepared.homepage}</a></dd>
</dl>
<vb:else />
<dl class="blockrow stats">
<dt>{vb:rawphrase this_page}</dt>
<dd> <a href="{vb:raw prepared.profileurl}{vb:raw prepared.homepage}">{vb:raw prepared.profileurl}</a></dd>
</dl></vb:if>
enjoy :)
|