vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Adding another link to the Quick Links button (https://vborg.vbsupport.ru/showthread.php?t=91901)

Christine 07-10-2005 12:45 PM

LOL!

I viewed source on it, and it is not showing the arcade entry. Are you making these changes to the parent navbar to be inhereted?

Biker_GA 07-10-2005 12:45 PM

Quote:

Originally Posted by Biker_GA
Oh! That's you? I'll go reactivate. ;) Read your PMs. ;)


I've done a search through all the other templates that may call Quick Links. The header template does. I'm wondering if there needs to be an addition to it as well.

I've done a search through all the other templates that may call Quick Links. The header template does. I'm wondering if there needs to be an addition to it as well.

PHP Code:

<tr><td class="thead">$vbphrase[quick_links]</td></tr>        
        <if 
condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="$vboptions[bburl]/search.php?$session[sessionurl]do=getnew">$vbphrase[new_posts_nav]</a></td></tr></if>
        <
tr><td class="vbmenu_option"><a href="$vboptions[bburl]/forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
        <
tr><td class="vbmenu_option"><a href="#" onclick="window.open('$vboptions[bburl]/misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td></tr>
                
        <
tr><td class="thead"><a href="$vboptions[bburl]/usercp.php?$session[sessionurl]">$vbphrase[user_control_panel]</a></td></tr>
        <if 
condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="$vboptions[bburl]/profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
        <if 
condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="$vboptions[bburl]/profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>
        <
tr><td class="vbmenu_option"><a href="$vboptions[bburl]/profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a></td></tr>
        <
tr><td class="vbmenu_option"><a href="$vboptions[bburl]/profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr

Quote:

Originally Posted by Christine
LOL!

I viewed source on it, and it is not showing the arcade entry. Are you making these changes to the parent navbar to be inhereted?

I'm making the change to the navbar template for the specific style. It's the default and only one used on the site. (Yes, I'm a mean Admin. I choose the style and they get to live with it. LOL)


And this automerge double post is a pain in the backside! LMAO

Christine 07-10-2005 12:47 PM

1 Attachment(s)
No changes need to be made to the header, just navbar.

That is strange. I added your link and phrase and it is working fine. Here is a screen shot with the navbar code that goes with it. Maybe try to compare that to what you are using?
Code:

<tr><td class="thead">$vbphrase[quick_links]</td></tr>               
<if condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td></tr>
<tr><td class="vbmenu_option"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td></tr>       
<tr><td class="vbmenu_option"><a href="showgroups.php?$session[sessionurl]">$vbphrase[view_forum_leaders]</a></td></tr>
<tr><td class="vbmenu_option"><a href="arcade.php" rel="nofollow">$vbphrase[play_arcade]</a></td></tr>
       
<tr><td class="thead"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_control_panel]</a></td></tr>
<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a></td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
               
<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
<if condition="$show['pmstats']"><tr><td class="vbmenu_option"><a href="private.php?$session[sessionurl]">$vbphrase[private_messages]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="subscription.php?$session[sessionurl]">$vbphrase[subscribed_threads]</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td></tr>
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php?$session[sessionurl]">$vbphrase[whos_online]</a></td></tr></if>


Biker_GA 07-10-2005 01:03 PM

Quote:

Originally Posted by Christine
No changes need to be made to the header, just navbar.

That is strange. I added your link and phrase and it is working fine. Here is a screen shot with the navbar code that goes with it. Maybe try to compare that to what you are using?

No joy in mudville. I'm changing the navbar template for the specific style we're using. All other styles are turned off.

Christine 07-10-2005 01:10 PM

I honestly have no idea then. :(

I too work with the default template and let all of the styles (color changes only) inherit from that parent.

As this isn't a hack, you may want to ask over at vB.com if no one here has any other suggestions?

Biker_GA 07-10-2005 01:12 PM

I may ask over on vbstyles.com and see what they say, since the skin came from that site.

Thank you for your help, though. :)

Christine 07-10-2005 01:37 PM

Sorry. :(

It is frustrating when something SO simple doesn't work. :/

Biker_GA 07-10-2005 01:49 PM

**grin** Yeah.. Right.. I've dealt with simple before. And blew up the forums in the process. LMAO (Might have had something to do with the bourbon I was sipping, too, that night.)

Christine 07-10-2005 01:53 PM

LOL!!

Gotta love those IMs from the Mods saying "what in the * are you doing now"? Heh.

Biker_GA 07-10-2005 01:57 PM

What IMs? When I said I blew up the board, I BLEW IT UP! LMAO

Silly me. Got too cocky and didn't download the global.php file before I started fiddling with the live file. Just as it saved and uploaded, I saw all the formatting change. DOH! Instant shutdown.

Christine, it IS set in the headers. LOL


All times are GMT. The time now is 02:11 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.02485 seconds
  • Memory Usage 1,775KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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