Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Put a Column on the Left Side of Every Forum Page Details »»
Put a Column on the Left Side of Every Forum Page
Version: 1.1, by amykhar amykhar is offline
Developer Last Online: Nov 2013 Show Printable Version Email this Page

Version: 3.5.0 RC2 Rating:
Released: 07-08-2005 Last Update: 08-16-2005 Installs: 338
Uses Plugins Template Edits
 
No support by the author.

This little PRODUCT will provide you with a template to put content in a column going down the left side of every forum page.

What you put there is limited only by your imagination.

This can easily be combined with the right column product to have a column on both sides.

To use this with the right column product , change the footer code to:
Code:
<!-- Right Column Code  -->
</td>
<td width="160" valign="top" align="left">$rightcolumn</td>
</tr>
</table>
</td></tr>
</table>
<!-- End Right Column Code -->
Changes in 1.1
Some very important changes were made to the header and footer template changes. Please modify your header and footer code to use the new version.

This is now a PRODUCT and not a plugin. Use the product manager to import it. If you are upgrading, copy the contents of your left_column template to notepad BEFORE you install the product. Then, replace the template contents with your backup.

This version now includes sample html in the left_column template. Thanks to iguanairs for that code.

Show Your Support

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

Comments
  #422  
Old 01-23-2007, 07:22 PM
ryansmith ryansmith is offline
 
Join Date: Nov 2004
Posts: 46
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There's already a <br /> there so I tried adding a second one, and nothing happened. On IE7 the second table isn't even under the first table, it's to the right of it... and it's overlapped by the other sections of the forum, such as the categories.

Ryan
Reply With Quote
  #423  
Old 01-24-2007, 04:09 PM
KipLarson KipLarson is offline
 
Join Date: Jul 2005
Posts: 191
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ryansmith View Post
There's already a <br /> there so I tried adding a second one, and nothing happened. On IE7 the second table isn't even under the first table, it's to the right of it... and it's overlapped by the other sections of the forum, such as the categories.

Ryan
Hmm, I don't know then, Hopefully Kerry-Anne will come back and help your question and mine too
Reply With Quote
  #424  
Old 01-29-2007, 03:03 PM
KipLarson KipLarson is offline
 
Join Date: Jul 2005
Posts: 191
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible to make it not show up on certain pages? i.e. showthread? usercp?

Would just some simple if conditionals work?

(I asked this a week ago or so, but figured you might not have seen it, so I posted again. If anyone else knows the answer to the above question, let me know.)

Reply With Quote
  #425  
Old 01-29-2007, 08:21 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ryansmith View Post
How do I add a gap between the two different tables? You can see here that they are stacked on top of each other, but I'd like there to be a space in the middle. In the left_column template there is a <br /> after the last </table> statement. Underneath that I copied the new <table> code. I tried adding a second <br /> between the two and it didn't change anything. What am I missing? As you can see in the screen shot, I'd like there to be a gap between the boxes like the gap between the categories. Here's a screen shot and the code.

Code:
<table align="left" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="95%">
<tr>
<td class="tcat"><span class="smallfont"><b>&raquo; Navigation</b></span></td>
</tr>
<!-- Begin custom code -->
<tr>
<td class="alt1"><a href="/library/index.shtml">Library</a></td>
</tr>
<tr>
<td class="alt1"><a href="/gallery/index.php">Media Gallery</a></td>
</tr>
<tr>
<td class="alt1"><a href="/auctions/index.php">Auctions</a></td></tr>
<tr>
<td class="alt1"><a href="/links.html">Links</a></td></tr>
<tr>
<td class="alt1"><a href="misc.php?do=flashchat">Chat Room</a></td>
</tr>
<tr>
<td class="alt1"><a href="/rules/index.html">Forum Rules</a></td>
</tr>
<tr>
<td class="alt1"><a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a></td>
</tr>
<tr>
<td class="alt1"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
</tr>
<tr>
<td class="alt1"><a href="billspaypal.php?">$vbphrase[billspp_donate]</a></td>
</tr>
<!-- End custom code -->

</td>
</tr>
</table>
<br />

<table align="left" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="95%">
<tr>
<td class="tcat"><span class="smallfont"><b>&raquo; What's New</b></span></td>
</tr>
<!-- Begin custom code -->
<tr>
<td class="alt1">Our new <a href="forumdisplay.php?f=106">Product and Livestock Reviews</a> section is now open!</td>
</tr>
<!-- End custom code -->

</td>
</tr>
</table>
<br />


Quote:
Originally Posted by ryansmith View Post
There's already a <br /> there so I tried adding a second one, and nothing happened. On IE7 the second table isn't even under the first table, it's to the right of it... and it's overlapped by the other sections of the forum, such as the categories.

Ryan
Ryan,

Double check your code. You have a malformed section here

Code:
 <tr>
<td class="alt1"><a href="billspaypal.php?">$vbphrase[billspp_donate]</a></td>
</tr>
<!-- End custom code -->

</td>
</tr>
</table>
get rid of the </td></tr> above the </table> and you should be right as rain then.


Quote:
Originally Posted by KipLarson View Post

Also, Kerry:

Is it possible to make it not show up on certain pages? i.e. showthread? usercp?

Would just some simple if conditionals work?

(and thanks for answering my previous question )
Quote:
Originally Posted by KipLarson View Post
Hmm, I don't know then, Hopefully Kerry-Anne will come back and help your question and mine too
Kip,

Yes you can use conditionals such as
Code:
<if condition="THIS_SCRIPT != showthread">
to stop if from appearing on other pages. You need to find the names for the scripts which are defined inside each file near the top. This conditional will need to be placed around the header and footer template edits.
Reply With Quote
  #426  
Old 01-29-2007, 09:04 PM
KipLarson KipLarson is offline
 
Join Date: Jul 2005
Posts: 191
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Kerry-Anne. I think the only spot I won't have it on is my user cp and perhaps threads. What do you recommend? Or do you think it should be done on every page of the site?

I suppose it depends, but just trying to get an idea.

Thanks again.
Reply With Quote
  #427  
Old 01-30-2007, 04:49 PM
twells22 twells22 is offline
 
Join Date: Dec 2006
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, maybe I'm an idiot but I can't find where to edit the information in the new column? It works with 3.6.4 right?
Reply With Quote
  #428  
Old 02-05-2007, 12:30 AM
wolf32 wolf32 is offline
 
Join Date: Jan 2007
Location: Virginia Beach, VA
Posts: 145
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm sure somebody has already asked this, but I just can't find it. I tried to make is show up only on the forumhome but came up empty-handed, so where do you go to alter the coding for it to show up only on the forumhome and no other pages? Thanks in advance.
Reply With Quote
  #429  
Old 02-05-2007, 12:32 AM
Staxed's Avatar
Staxed Staxed is offline
 
Join Date: Jun 2006
Location: Fayetteville, NC
Posts: 468
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by wolf32 View Post
I'm sure somebody has already asked this, but I just can't find it. I tried to make is show up only on the forumhome but came up empty-handed, so where do you go to alter the coding for it to show up only on the forumhome and no other pages? Thanks in advance.
https://vborg.vbsupport.ru/showthread.php?t=112704 use this mod instead
Reply With Quote
  #430  
Old 02-06-2007, 05:04 PM
jeffcoll's Avatar
jeffcoll jeffcoll is offline
 
Join Date: Jan 2007
Location: Orlando, FL
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just downloaded it and will try it tomorrow. It must be great to be a guru on this stuff.
Reply With Quote
  #431  
Old 02-06-2007, 11:09 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KipLarson View Post
Thanks Kerry-Anne. I think the only spot I won't have it on is my user cp and perhaps threads. What do you recommend? Or do you think it should be done on every page of the site?

I suppose it depends, but just trying to get an idea.

Thanks again.
You can stop it from showing in the usercp and threads by using this conditional around your header and footer template edits.

Code:
<if condition="(THIS_SCRIPT != 'showthread') AND (THIS_SCRIPT != 'profile') AND (THIS_SCRIPT != 'usercp')">
Template edit for this modification here
</if>
Quote:
Originally Posted by twells22 View Post
Ok, maybe I'm an idiot but I can't find where to edit the information in the new column? It works with 3.6.4 right?
There is a new template called left_column in your style manager.

Quote:
Originally Posted by jeffcoll View Post
Just downloaded it and will try it tomorrow. It must be great to be a guru on this stuff.
Guru? Where? Point them out to me if you see one
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 03:33 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.05136 seconds
  • Memory Usage 2,329KB
  • Queries Executed 25 (?)
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
  • (5)bbcode_code
  • (9)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
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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