Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Left Sidebar on all pages. Details »»
Left Sidebar on all pages.
Version: 1.00, by Dark_Wizard Dark_Wizard is offline
Developer Last Online: Jun 2014 Show Printable Version Email this Page

Version: 3.0.0 Rating:
Released: 01-05-2004 Last Update: Never Installs: 153
 
No support by the author.

Provides a left, right or both sidebars on all pages.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #107  
Old 03-25-2004, 06:36 PM
BarBeQue's Avatar
BarBeQue BarBeQue is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That option is here:
admincp / styles & templates / all styles options

then browse down to "Sizes and Dimensions" part. it's the 9th option there.

But setting it to auto didn't fix the show thread header error for me.
It still looks like this (only on the threadview thought! forumhome and forumview are fine)
Reply With Quote
  #108  
Old 03-25-2004, 06:44 PM
BarBeQue's Avatar
BarBeQue BarBeQue is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I kinda wanna change the place of the menu.
I would like it to be BELOW the navbar, so that the navbar uses 100% like before and the menu is top alligned with the first forum.

Like the pic i made in the attachment.

Also i would like (request request ) to have it shown all ALL but ONLY ALL pages the navbar is showing.
That means it won't show on reg pages, redirect screens, erro messages, empty searches, like that navbar doesn't show on those pages either, but it will show on all other pages.
Is that diff to accomplish?

oh, almost forgot...
[high]* BarBeQue clicks install
[/high]
great addon!
Reply With Quote
  #109  
Old 03-25-2004, 07:59 PM
BarBeQue's Avatar
BarBeQue BarBeQue is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, i solved my own request in the previous post

instead of adding this to the end of the header template:
PHP Code:
<!-- Sidebar -->
<
table width="$stylevar[tablewidth]cellpadding="0" cellspacing="7" border="0">
    <
tr>
        <
td style="width:150px" valign="top">$sidebar</td>
        <
td valign="top">
<!-- 
Update -->
<
table width="$stylevar[tablewidth]cellpadding="0" cellspacing="0" border="0">
<
tr>
        <
td style="width:100%">
<!-- /
Update -->
<!-- /
Sidebar --> 
I added this to the end of the navbar template:
PHP Code:
<!-- Sidebar -->
<
table width="$stylevar[tablewidth]cellpadding="0" cellspacing="0" border="0">
    <
tr>
        <
td style="width:150px" valign="top">$sidebar</td>
        <
td style="width:10px" valign="top"> </td>
        <
td valign="top">
<!-- 
Update -->
<
table width="$stylevar[tablewidth]cellpadding="0" cellspacing="0" border="0">
<
tr>
        <
td style="width:100%">
<!-- /
Update -->
<!-- /
Sidebar --> 
(I basically changed the cellspacing to 0 to align it with the navbar, and since that removed all space between the menu and the right forums i added a 10 pixel colomn between them)

Works great this way. It now shows for all pages except login/forbidden/redirect or other message screens


But i still have the thread view misallignment i posted 2 pots above, so if someone can help me out there, pls do
Reply With Quote
  #110  
Old 03-25-2004, 08:49 PM
pete_brady pete_brady is offline
 
Join Date: Mar 2002
Location: Dublin
Posts: 209
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BarBeQue
That option is here:
admincp / styles & templates / all styles options

then browse down to "Sizes and Dimensions" part. it's the 9th option there.

But setting it to auto didn't fix the show thread header error for me.
It still looks like this (only on the threadview thought! forumhome and forumview are fine)
having the same problem here

frustrating.
Reply With Quote
  #111  
Old 03-25-2004, 09:09 PM
pete_brady pete_brady is offline
 
Join Date: Mar 2002
Location: Dublin
Posts: 209
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by pete_brady
having the same problem here

frustrating.
ok

in your postbit template, replace $spacer_open with

PHP Code:
<!-- open content container -->
<if 
condition="$show['old_explorer']">
    <
table cellpadding="0" cellspacing="0" border="0" width="$stylevar[outertablewidth]align="center"><tr><td class="page" style="padding:0px 0px 0px 0px">
<else />
    <
div align="center">
        <
div class="page" style="width:$stylevar[outerdivwidth]; text-align:$stylevar[left]">
            <
div style="padding:0px 0px 0px 0px">

</if> 
I don't know if modifying the $spacer_open template would have any knock-on effects elsewhere, so this just changes the div style padding to all zeroes instead of using the style values.

It's neither graceful nor elegant, but it works for me.
Reply With Quote
  #112  
Old 03-29-2004, 03:06 PM
FWT FWT is offline
 
Join Date: Feb 2002
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have this working fine, but is there anyway to prevent it from showing on Showthread?
Reply With Quote
  #113  
Old 03-30-2004, 06:08 PM
BarBeQue's Avatar
BarBeQue BarBeQue is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by pete_brady
It's neither graceful nor elegant, but it works for me.
Yup, works fine for me.
Thanks!
Reply With Quote
  #114  
Old 03-30-2004, 08:02 PM
ashley53680 ashley53680 is offline
 
Join Date: Dec 2003
Posts: 124
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can I see it now that you have edited those templates?? (purty please?)

Ash
Reply With Quote
  #115  
Old 03-30-2004, 09:11 PM
BarBeQue's Avatar
BarBeQue BarBeQue is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Who are you talking too ashley?
And what do you want to see?

This is how it looks for me atm (board not finished though)
Reply With Quote
  #116  
Old 03-31-2004, 01:19 AM
ashley53680 ashley53680 is offline
 
Join Date: Dec 2003
Posts: 124
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BarBeQue
I kinda wanna change the place of the menu.
I would like it to be BELOW the navbar, so that the navbar uses 100% like before and the menu is top alligned with the first forum.
I was wondering if you got it to work under the nav bar... I already have it installed on mine to go on the left side... but I don't like it in the showthread, it's all off.


http://simply-baby.net/forum
Reply With Quote
  #117  
Old 03-31-2004, 01:45 AM
Action-N's Avatar
Action-N Action-N is offline
 
Join Date: Jan 2002
Location: Pasco, WA
Posts: 225
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by FWT
I have this working fine, but is there anyway to prevent it from showing on Showthread?
Well I just put the code in my FORUMHOME template, sidebar only shows on my forum index page now.

Hey BBQ, I moved mine under the navbar too, looks a whole lot better there. My sig has a link to my forum. Think it's only a matter of time before we have a side blocks system from vBindex or something.
Reply With Quote
  #118  
Old 03-31-2004, 04:39 AM
BarBeQue's Avatar
BarBeQue BarBeQue is offline
 
Join Date: Nov 2001
Location: The Netherlands
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ashley, use the fix that pete suggested above
https://vborg.vbsupport.ru/showpost....&postcount=110

That fixed the alligning on my showthread fine


Action-N, where did you put yours?
Cause i duno hopw you want it, but atm for you it only shows on forumhome.
I put mine in the navbar template so it shows on ALL pages (except message display pages such as redirecting, no permission and such.
Reply With Quote
  #119  
Old 03-31-2004, 05:24 AM
Action-N's Avatar
Action-N Action-N is offline
 
Join Date: Jan 2002
Location: Pasco, WA
Posts: 225
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I did put it in FORUMHOME template after $navbar and before $footer. Didn't think it looked right on showthread, but I'm trying it again under navbar template. Maybe it'll be better if I add more stuff in it.

I've been uninstalling vbIndex an installing vbAdvance. I just checked an it even shows on the index page. Have to see, maybe can get vbadvance menus to work with this side bar hack. That'd be cool.
Reply With Quote
  #120  
Old 03-31-2004, 05:40 AM
jluerken's Avatar
jluerken jluerken is offline
 
Join Date: Aug 2003
Location: Germany
Posts: 1,016
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The hack is working fine but I have one question.

I added the vbAdvanced Portal to my page and now the sidebar is also displayed on the portal page.
I only want the sidebar to be shown on forumhome and not within a forum or on the portal page.
Dark_Wizard do you have a solution for this also?
Reply With Quote
  #121  
Old 03-31-2004, 05:50 AM
Action-N's Avatar
Action-N Action-N is offline
 
Join Date: Jan 2002
Location: Pasco, WA
Posts: 225
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by jluerken
The hack is working fine but I have one question.

I added the vbAdvanced Portal to my page and now the sidebar is also displayed on the portal page.
I only want the sidebar to be shown on forumhome and not within a forum or on the portal page.
Dark_Wizard do you have a solution for this also?
I just got done making two posts right above this one that answers your question. It's ok to read threw the posts, it's not all random jargon.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:50 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.16822 seconds
  • Memory Usage 2,388KB
  • Queries Executed 30 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (16)post_thanks_box
  • (16)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (16)post_thanks_postbit_info
  • (15)postbit
  • (16)postbit_onlinestatus
  • (16)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete