gdaily
03-14-2007, 06:18 AM
How do I disable the users info of homepage:
2 possible solutions:
a) Either disable the field homepage in the user profile
b) Or disable the showing of users homepage when clicking on posters name in a psot.
Any suggestion on either of the two?
Peggy
03-14-2007, 07:08 AM
hmmmmm no idea - I've never disabled it or been asked to.
Keep checking back, someone's bound to know :)
protoss
03-14-2007, 12:55 PM
Try this.
AdminCP -> vBulletin Options -> User Listing and Profile Viewing -> Member List Field Options
Uncheck -> Home Page
gdaily
03-14-2007, 03:00 PM
Try this.
AdminCP -> vBulletin Options -> User Listing and Profile Viewing -> Member List Field Options
Uncheck -> Home Page
You made my heart go bom-bom-bom tehre for a while, but sadly that was not the solution.
If you click on Peggys name here in the thread (left at her posts) you will see her hompage info. That is what I am trying to kill..
protoss
03-14-2007, 04:14 PM
Got you gdaily. This will remove the option from the member profile, Member info page and the Username dropdown.
Search in templates for [visit_xs_homepage]
Comment out the following: ( <!-- --> )
Template: modifyprofile
<!-- <fieldset class="fieldset">
<legend><label for="tb_homepage">$vbphrase[home_page_url]</label></legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td>$vbphrase[let_other_visitors_know_url]</td>
</tr>
<tr>
<td>$vbphrase[home_page_url]<br /><input type="text" class="bginput" name="homepage" id="tb_homepage" value="$bbuserinfo[homepage]" size="50" maxlength="200" dir="ltr" /></td>
</tr>
</table>
</fieldset> -->
Template: MEMBERINFO
<!-- <if condition="$show['homepage']">
<tr>
<td>
$vbphrase[home_page]:<br />
<a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
</td>
</tr>
</if> -->
Template: postbit_legacy or Template: postbit
<!-- <if condition="$show['homepage']">
<tr><td class="vbmenu_option"><a href="$post[homepage]"><phrase 1="$post[username]">$vbphrase[visit_xs_homepage]</phrase></a></td></tr>
</if> -->
WhaLberg
03-14-2007, 04:18 PM
What about removing that field from postbit template?
Find the following code in your postbit or postbit_legacy template: <if condition="$show['homepage']">
<tr><td class="vbmenu_option"><a href="$post[homepage]"><phrase 1="$post[username]">$vbphrase[visit_xs_homepage]</phrase></a></td></tr>
</if>
And remove it.
Good luck.
gdaily
03-15-2007, 02:50 AM
I thank you all very very much!