PDA

View Full Version : Disable User Profile Home Page URL?


Irate Pirate
06-04-2011, 05:59 AM
I am looking for a way to disable the home page url from user profiles...
I am using VBulletin 4.1.3

Any suggestions?

Thanks in advance for any assistance

Lynne
06-04-2011, 03:37 PM
You want to remove the link on the left side of the profile page that says "Home Page" Just remove this code from the MEMBERINFO template:
<vb:if condition="$prepared['homepage']">
<li>
<a href="{vb:raw prepared.homepage}"><img src="{vb:stylevar imgdir_siteicons}/homepage.png" alt="{vb:rawphrase home_page}" class="inlineimg" /> {vb:rawphrase home_page}</a>
</li>
</vb:if>

If you like plugins better, you can just write on to set $prepared['homepage'] to false and then it won't show either.

Irate Pirate
06-04-2011, 06:16 PM
Thanks Lynne for responding to my question. I will put your suggestion to use in short measure.

(As an update) - Your suggestion worked just as I wanted. :up: Thanks again!