Let's start by going to
1.) "memberinfo_block_statistics"
Locate the code:
Either delete this code, or better yet, I recommend wrapping it in <vb:comment>...code here...</vb:comment> tags so that if you change your mind in the future, all you would need to do is remove the comment tags.
2.) "modifyprofile"
Locate the code:
And either delete or comment out.
These 2 edits will prevent URLs already entered by users on their profiles from displaying and will prevent any new URLs from being entered.
by:JMPRockFm
1.) "memberinfo_block_statistics"
Locate the code:
Code:
<vb:if condition="$prepared['homepage']">
? ? <dl class="blockrow stats">
? ? ? ? <dt>{vb:rawphrase home_page}</dt>
? ? ? ? <dd> <a href="{vb:raw prepared.homepage}" target="_blank">{vb:raw prepared.homepage}</a></dd>
? ? </dl>
? ? </vb:if>
Either delete this code, or better yet, I recommend wrapping it in <vb:comment>...code here...</vb:comment> tags so that if you change your mind in the future, all you would need to do is remove the comment tags.
2.) "modifyprofile"
Locate the code:
Code:
<div class="blockrow">
? ? ? ? ? ? ? ? <label for="tb_homepage">{vb:rawphrase home_page_url}:</label>
? ? ? ? ? ? ? ? <input type="text" class="primary textbox" name="homepage" id="tb_homepage" value="{vb:raw bbuserinfo.homepage}" maxlength="200" dir="ltr" tabindex="1" />
? ? ? ? ? ? ? ? <p class="description">
? ? ? ? ? ? ? ? ? ? {vb:rawphrase let_other_visitors_know_url}
? ? ? ? ? ? ? ? </p>
? ? ? ? ? ? </div>
These 2 edits will prevent URLs already entered by users on their profiles from displaying and will prevent any new URLs from being entered.
by:JMPRockFm