vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Remove home page url? (https://vborg.vbsupport.ru/showthread.php?t=157800)

chickadee 09-14-2007 03:43 AM

Remove home page url?
 
Is it possible to remove this option from registration and the control panel?
Many thanks in advance!

Kiwi76 09-14-2007 10:59 AM

Yes, via editing templates. Find the bit of code in the templates and just remove them. Optionally, you might want to remove it from the profile view page too? Removing them from templates will cause the page not to generate that field, so they can't see it fill it out, BUT anyone who filled it out already will still have it. You'll either need to manually remove those, hide them from appearing in the profile as I suggested, or run a query.

Is there a field for your homepage in the registration? I couldn't find any (note that I'm using 3.5.8, so the code might be a bit different, but the solution will be the same).

I always recommend you to back up your templates before changing them in case anything goes wrong.

To remove it from the UserCP, in the "modifyprofile" template, remove this.
Code:

<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>

To remove it from the profile view, in the "MEMBERINFO" template, remove this.
Code:

<if condition="$show['homepage']">
                                <tr>
                                        <td>
                                                $vbphrase[home_page]:<br />
                                                <a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
                                        </td>
                                </tr>
                                </if>

If you plan to hide it in the profile instead of remove it, you may also want to do this. it will stop it from showing up in the dropdown menu when you click their name. In either the "postbit" or "postbit_legacy", depending on what you use, remove this.
Code:

<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>

Offhand, I think that's all that's needed.

chickadee 09-15-2007 02:50 PM

Wow thanks soooo much!

dachoh 10-03-2008 01:59 PM

Hello!
Would anyone know where to remove the homepage url in vb 3.7, under the users "Contact Info" tab?
The fix provided by kiwi76 worked for the "modifyprofile" template, which worked for any new users, but I couldn't find the code listed for the "MEMBERINFO" template.

Thanks for any help, or suggestions.


All times are GMT. The time now is 03:27 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01415 seconds
  • Memory Usage 1,720KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete