Back to vBulletin 4.x Template Modifications

Home Page or This Page - Member Profile
Mod Version: 1.00, by FASEOFMARS

vB Version: 4.x.x Rating: (1 vote - 4.00 average) Installs: 6
Released: 13 May 2011 Last Update: Never Downloads: 0
Not Supported Template Edits  

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

Download

No files for download.


vblts.ru supports vBulletin®, 2022-2024