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

Reply
 
Thread Tools
Sidebar Column Details »»
Sidebar Column
Version: 3.8.002, by ry215 ry215 is offline
Developer Last Online: May 2022 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.8.1 Rating:
Released: 02-08-2009 Last Update: 02-08-2009 Installs: 832
Uses Plugins Auto-Templates
Translations  
No support by the author.

Description:
This MOD automatically create a sidebar column on the left or right in your forum.

Features:
  • Show only Index or All Pages.
  • Choose StyleID, which you want to use for the sidebar.
  • User Infomation with Avatar
  • Latest Threads
  • Poll
  • Advertisement
  • Partner Links
Info:
Plugins: 3
Phrases: 57
Templates: 17
Settings: 20

Install:

1. Import Product via Manage Products
ACP >> Plugins & Products >> Manage Products >> [Add/Import Product]

Settings:
ACP >> vBulletin Options >> Sidebar Column Settings

History:
v3.8.001 : First Release
v3.8.002 : Add Option for StyleID

PS: Work fine with 3.7.x (Tested)

Thanks to:
  • bmckinley
  • Alisa Lindsay

Similar Mods:
Sidebar Lastest Threads
Sidebar Poll

Download Now

File Type: xml product-sidebar_column.xml (88.6 KB, 7073 views)

Screenshots

File Type: jpg sc_left.jpg (74.1 KB, 0 views)
File Type: jpg sc_right.jpg (72.5 KB, 0 views)
File Type: jpg sc_acp.jpg (76.0 KB, 0 views)

Show Your Support

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

Comments
  #472  
Old 04-02-2010, 04:31 PM
matthewhotdude matthewhotdude is offline
 
Join Date: Jul 2009
Posts: 560
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Love to know how to add another block,
Reply With Quote
  #473  
Old 04-17-2010, 05:58 AM
akonze akonze is offline
 
Join Date: Mar 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

does not work for me. I installed it and nothing changed.
Reply With Quote
  #474  
Old 04-17-2010, 10:02 AM
matthewhotdude matthewhotdude is offline
 
Join Date: Jul 2009
Posts: 560
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Did you set your style i.d?
Reply With Quote
  #475  
Old 04-19-2010, 04:09 AM
haytham's Avatar
haytham haytham is offline
 
Join Date: Jan 2003
Location: USA-Egypt-UAE
Posts: 510
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

not working for me and I looked at the first post where usually any issues are fixed but didn't find any. As soon as I choose latest threads, I get a dbase error. I have seen others complain about this but didn't see a fix. Also, if I choose right side, it goes under the forum. It will only work on the left. I think it needs fixing then it would be really great. Thank you.
Reply With Quote
  #476  
Old 04-23-2010, 02:49 AM
KelliH KelliH is offline
 
Join Date: May 2006
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It installed this mod to use it as a location for a rotating banner. I was able to accomplish this using the Cyb Flash Banner Rotator. Problem is that the column only displays when I have it set to display on "Index" page and when I set it to display on "All Pages" the column does not display. Now it works fine and displays on All Pages when I use the default vb skin, but not on either of my custom skins.

I know there must be a simple template edit I can do on my custom skins to make the column display on All Pages, but I cannot figure out which template to edit to make this work. Can anyone offer advice?
Reply With Quote
  #477  
Old 04-25-2010, 06:43 AM
Naan-Kadavul's Avatar
Naan-Kadavul Naan-Kadavul is offline
 
Join Date: Sep 2009
Location: Singpore
Posts: 249
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

superb mod...
Reply With Quote
  #478  
Old 04-30-2010, 03:08 PM
ckelley's Avatar
ckelley ckelley is offline
 
Join Date: Apr 2010
Location: Galax, Virginia
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, I was working on trying to figure out why the path for th e"No Avatar" option was not working. Or, not showing the image that the path leads to for the default avatar. I have been going over the code and cannot figure out what the issue is. Can someone please take a look at the code quoted below and let me know if there is something there that should not be or if there is something that should be there that is not? thanks for the assistance.

Quote:
// not using a predefined avatar, check for custom
if ($avatar = $db->query_first("SELECT dateline, userid FROM " . TABLE_PREFIX . "customavatar WHERE userid = " . $vbulletin->userinfo[userid] . ""))
{
// using a custom avatar
$navbaravatarurl = ($vbulletin->options['usefileavatar']) ? "" . $vbulletin->options[avatarurl] . "/avatar$avatar[userid]_" . $vbulletin->userinfo[avatarrevision] . ".gif" : "" . $vbulletin->options[bburl] . "/image.php?u=" . $vbulletin->userinfo['userid'] . "&dateline=" . $avatar['dateline'] . "";
$sc_avatar = "<img src=\"$navbaravatarurl\" alt=\"Your Avatar\" border=\"0\" />";
}
else
{
// no avatar specified
$noavatarurl = $vbulletin->options['default_noavatar_url'];
$nouseavatarchecked = HTML_CHECKED;
$avatarchecked[0] = '';
$sc_avatar = "<img src=\"" . $vbulletin->options[bburl] . "/$noavatarurl\" alt=\"Your Avatar\" border=\"0\" />"; // "<span class=\"smallfont\">No Avatar<br/ >Specified</span>";
Reply With Quote
  #479  
Old 04-30-2010, 05:25 PM
ckelley's Avatar
ckelley ckelley is offline
 
Join Date: Apr 2010
Location: Galax, Virginia
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, I do have one other issue. When you look at the side bar blocks, the "User Information" block title actually says "User Infomation" leaving the "R" out of information. Now, I did nothing with that, I can;t efven find the right file to make the correction. Any help with that would be great.

Also, I know this mod is unsupported, I am just trying to get ideas from those that have experience with it.

thanks

Check out the error @ www.syntheticmotorsports.org
Reply With Quote
  #480  
Old 04-30-2010, 07:52 PM
Trip's Avatar
Trip Trip is offline
 
Join Date: Mar 2008
Location: Eastern Canada
Posts: 199
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's probably a phrase. Do a search in the phrases group (product=sidebar) using the typo, then just replace that mis-spelling with whatever you want.
Reply With Quote
  #481  
Old 04-30-2010, 09:00 PM
ckelley's Avatar
ckelley ckelley is offline
 
Join Date: Apr 2010
Location: Galax, Virginia
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That worked just dandy for the spelling mistake. Thank you.
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:01 AM.


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.05262 seconds
  • Memory Usage 2,337KB
  • Queries Executed 26 (?)
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
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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
  • (4)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete