vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   How do i edit user profile navigation tabs (https://vborg.vbsupport.ru/showthread.php?t=312327)

DreadsUK 06-21-2014 08:10 PM

How do i edit user profile navigation tabs
 
https://vborg.vbsupport.ru/external/2014/06/33.png

At some point i've changed the default to become 'about me' But can;t for the life of me remember how i did it. I do so much, i can;t remember it all.

Just want to rearange the tabs, rename a couple and change the default to the Wall

oh, and want to delete the activity 'all and my friends' bit in the tabs

tbworld 06-22-2014 03:24 AM

Did you use a modification or an article to add tabs? Perhaps this one?

https://vborg.vbsupport.ru/showthread.php?t=265971

I am asking to clarify how you added the tabs in the first place.

RichieBoy67 06-22-2014 04:17 AM

To disable tabs go into admincp/general options drop down under userprofile options. You will see a list. I believe you can set your default there as well.

To change names you can use the phrasing system..

thetechgenius 06-22-2014 05:49 AM

Like Richieboy said, you have to edit the Phrases for those profile tabs to rename them. Search the Tab Names in Phrases. Now if you want to reorder the tabs, well that's a different story, and I'm note sure about that. But I'm sure it will require a lot of edits in the correct Template.

DreadsUK 06-22-2014 08:51 AM

Quote:

Originally Posted by tbworld (Post 2502990)
Did you use a modification or an article to add tabs? Perhaps this one?

https://vborg.vbsupport.ru/showthread.php?t=265971

I am asking to clarify how you added the tabs in the first place.

That helped me find it but i dont thing this was it.

It was definitely through the plug in tho to set the default so i juat changed that. But to change the order of the tabs is unknown.

tbworld 06-22-2014 08:55 AM

Currently looking into this for you. Sorry, was a bit back logged and needed to refill my drink. :)

Post or PM me your code for the tabs plugin. I just want to see the method you are using, I do not need to execute it.

DreadsUK 06-22-2014 09:25 AM

Quote:

Originally Posted by tbworld (Post 2503022)
Post or PM me your code for the tabs plugin.

thought i'd post it incase anyone else needed it

https://vborg.vbsupport.ru/external/2014/06/31.png

Code:

if (!$vbulletin->GPC_exists['tab'])
{
    $vbulletin->GPC['tab'] = 'visitor_messaging';
}

i added visitor messaging as my default now. To add a different one, (for the courtesy of anyone reading) go to your profile page and right click on the tab you want to default.
Select 'copy link address' and paste it into a new browser address bar. The last word after the '#' on that address is what you want to copy and paste where the red lettering is in the above code.

--------------- Added [DATE]1403435476[/DATE] at [TIME]1403435476[/TIME] ---------------

Just found how to rearrange the standard tabs
go to templates and open MEMBERINFO. Right at the bottom of the code are the tab codes. you can just rearrange the order of the code.

Still need to work out how to put the custom tabs in the middle of the standard ones.

i now have this

https://vborg.vbsupport.ru/external/2014/06/32.png

Which looks much cleaner.

Want to get it to go My Wall, Blog, My Media, Friends, Quotes, Mentions, About Me

tbworld 06-22-2014 11:44 AM

Thanks for sharing. It is what makes this place work and it is appreciated. :)

When I asked you to post the code, I did not clarify and I was referring to the php plugin code. (Sorry, my fault). I was going to add the following to your code so it would be a better example. :)

--------------------------------------------------------------------------------------
I will go ahead and post and we will join it up with your code later.

You most likely are rendering to:
$template_hook['profile_tabs_first'] .= $templater->render();
$template_hook['profile_tabs_last'] .= $templater->render();

Choice 1:
Since you already figured out you can just move the html code around, you could just move the hook around.

Choice 2:
Using the template hook system we can just add on to it. The "template hook array" is already registered to the template so we just need to add onto the array.

PHP Code:

// Your existing code ...

  
$template_hook['profile_tabs_myhook'] .= $templater->render();

// Your existing code ... 




Add to MEMBERINFO template

Add the new hook... The rest of the code is for reference
HTML Code:

{vb:raw template_hook.profile_tabs_first}
    <vb:if condition="$blocks[activitystream]">...
    <vb:if condition="$blocks[visitor_messaging]">...
   
<!-- Add your own hook -->
{vb:raw template_hook.profile_tabs_myhook}  <!-- Add This Line Only! -->
<!-- Add your own hook -->
                       
    <vb:if condition="$blocks[infractions]">...
    <vb:if condition="$blocks[reputation]">...
{vb:raw template_hook.profile_tabs_last}

Use the same procedure to create multiple hooks if you need them.

ForceHSS 06-22-2014 12:11 PM

I am sure someone could make a plugin that does this for you

DreadsUK 06-22-2014 12:19 PM

Quote:

Originally Posted by tbworld (Post 2503050)

Add to MEMBERINFO template[/B]
Add the new hook... The rest of the code is for reference
HTML Code:

{vb:raw template_hook.profile_tabs_first}
    <vb:if condition="$blocks[activitystream]">...
    <vb:if condition="$blocks[visitor_messaging]">...
   
<!-- Add your own hook -->
{vb:raw template_hook.profile_tabs_myhook}  <!-- Add This Line Only! -->
<!-- Add your own hook -->
                       
    <vb:if condition="$blocks[infractions]">...
    <vb:if condition="$blocks[reputation]">...
{vb:raw template_hook.profile_tabs_last}

Use the same procedure to create multiple hooks if you need them.

Do i add this
PHP Code:

// Your existing code ...

  
$template_hook['profile_tabs_myhook'] .= $templater->render();

// Your existing code ... 

[B]

To the same plugin as this
Code:

if (!$vbulletin->GPC_exists['tab'])
{
    $vbulletin->GPC['tab'] = 'visitor_messaging';
}



All times are GMT. The time now is 01:02 PM.

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.01055 seconds
  • Memory Usage 1,750KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_html_printable
  • (2)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete