Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons

Reply
 
Thread Tools
Nexia's Forum Sidebar Everywhere Details »»
Nexia's Forum Sidebar Everywhere
Version: 1.0.3, by vbenhancer vbenhancer is offline
Developer Last Online: Nov 2012 Show Printable Version Email this Page

Category: vBulletin Forum Sideblocks - Version: 4.x.x Rating:
Released: 03-21-2012 Last Update: 08-08-2012 Installs: 51
Uses Plugins
Additional Files  
No support by the author.

Will add the forumhome sidebar everywhere logically possible to show it, with choices of locations.

First Screenshots show how it is "before/after" on the calendar page, doing some esthetical changes... some templates are less obvious!

Third screeny is about the settings you can change to your wills.

I take requests if you want other templates to be available...

Actual Pages where the sidebar can be activated on release date, Mar 21th, 2012:

Forumhome (can even be deactivate and show sidebar elsewhere)
Main Albums Pages
Announcements
Calendar
FAQ
Forum Display
Main Groups Pages
Member List
Who's Online
Show Thread
Main Blog Pages

################################################## #############################
# How To use Nexia's Forum Sidebar Everywhere:


################################################## #############################
# Simple Installation:

1- upload via ftp the content of the /UPLOAD_THIS/ folder in your forum's base directory.

2- Import the Product file included in the /IMPORT_THIS/ folder.

3- AdminCP >> Settings >> Options >> Forum Sidebar and Block Options

Follow that path and change the list of pages you want the sidebar to show up.


################################################## #############################
# Customization:

If you have customized templates on the pages affected by this engine, you will need to edit it's related template to make it fit your custom design. To do so, it's simple... to edit our version of SHOWTHREAD, find SHOWTHREAD_SIDEBAR and edit it accordingly.
*(you can also hire nexialys to do the job!)


################################################## #############################
# What to Know:

This tool originally replace the pages you browse by pages that contain the sidebar you already have on Forum Home.

How it work is simple. Each page you see on your browser is made from a "template" containing the proper codes to display each elements you see in the page. For the default vBulletin, only the "Forum Home" page contain the codes to display a sidebar. But maybe you would like to see that sidebar in other pages where it would help the navigation of the visitors ?!

That's what this tool intend to do... add the sidebar in precise pages that deserve to. In the "Forum Sidebar and Block Options" page, you can now select what page will show the sidebar...

To make it more even, the FORUMHOME template was updated as well to look like all the others... as the sidebar is supposed to be similar everywhere.


################################################## #############################
# Why not adding everything via plugin instead of switching templates?:

When we add that kind of content via plugin, we face the possibility to have a template that is incompatible with the hooks we need, or a style that we can not trust because written poorly.

We switch templates so your designer can edit the default templates we provide and make them better if necessary. It is tangible content, it requires less server process, and you can customize it for each style you have... the other technique does not comply with that option.

EDIT: update on april 10th, now deactivate automatically for Mobile styles... *(as requested hundreds of times! )
EDIT: update on april 11th, edited the product file to fit forumhome for mobiles, sorry!

EDIT: august 9th, 2012: version 4.2 is now supported - memberlist and other pages are now showing proper content... sorry for the late, summer vacations with 7 kids is a bit complicated to deal with!

Download Now

File Type: zip nex_sidebar_everywhere.zip (56.6 KB, 278 views)

Screenshots

File Type: jpg nex_sidedar_everywhere_calendar_wo.jpg (87.8 KB, 0 views)
File Type: jpg nex_sidedar_everywhere_calendar.jpg (92.6 KB, 0 views)
File Type: jpg nex_sidebar_everywhere_options.jpg (103.6 KB, 0 views)
File Type: jpg nex_sidedar_everywhere_forumdisplay.jpg (135.2 KB, 0 views)
File Type: jpg nex_sidedar_everywhere_forumhome.jpg (123.9 KB, 0 views)
File Type: jpg nex_sidedar_everywhere_memberlist.jpg (95.5 KB, 0 views)
File Type: jpg nex_sidedar_everywhere_showthread.jpg (136.2 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
Gemma, TheLastSuperman

Comments
  #112  
Old 07-10-2012, 07:43 PM
ihstiv ihstiv is offline
 
Join Date: Jan 2009
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by vbenhancer View Post
actually, you are right AND wrong...

what you found is in the FORUMHOME template, in vB 4.2 template... not in my template with is based on the 4.1.12 version of the FORUMHOME template...

so yes, i have to update my template to fit both versions !!!
Happy to be wrong, but I didn't see that snippet in the vb 4.2 template.. only in the NEX template. regardless, seems like it shouldn't be there. cheers.
Reply With Quote
  #113  
Old 07-25-2012, 08:58 PM
ihstiv ihstiv is offline
 
Join Date: Jan 2009
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does anybody know how to implement the strip_bbcode() function or similar, so that we don't see bbcode displayed in the sidebar content? TIA

update:

I realized this is only occuring on my forum home page which uses vb cms widget, so I added this code:
$thread['previewtext'] = strip_bbcode($thread['previewtext'], true, true, false, true, false);

after this line:
$thread['previewtext'] = fetch_censored_text($parser->get_preview($thread['message'], $this->default_previewlen, $allow_html));

..in this file:
forum/packages/vbcms/widget/recentthreads.php

.. and it removed the bbcode.

apologies that this is not directly related to this mod.. This mod already removes bbcode from sidebar content as desired.
Reply With Quote
  #114  
Old 07-26-2012, 01:05 AM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ihstiv View Post
Does anybody know how to implement the strip_bbcode() function or similar, so that we don't see bbcode displayed in the sidebar content? TIA

update:

I realized this is only occuring on my forum home page which uses vb cms widget, so I added this code:
$thread['previewtext'] = strip_bbcode($thread['previewtext'], true, true, false, true, false);

after this line:
$thread['previewtext'] = fetch_censored_text($parser->get_preview($thread['message'], $this->default_previewlen, $allow_html));

..in this file:
forum/packages/vbcms/widget/recentthreads.php

.. and it removed the bbcode.

apologies that this is not directly related to this mod.. This mod already removes bbcode from sidebar content as desired.
If it's not directly related then you should not post such things in a modification thread as it derails the topic per say. Please open a new thread (possibly in https://vborg.vbsupport.ru/forumdisplay.php?f=252 ) and ask this there .
Reply With Quote
  #115  
Old 08-01-2012, 05:23 AM
reteep reteep is offline
 
Join Date: Mar 2004
Location: Germany
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any news on a possible update for usercp etc.?
Reply With Quote
  #116  
Old 08-01-2012, 02:46 PM
vbenhancer's Avatar
vbenhancer vbenhancer is offline
 
Join Date: Dec 2009
Location: Qu?bec city, Canada
Posts: 740
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by reteep View Post
Any news on a possible update for usercp etc.?
sorry, i was on family vacations, i'm back since yesterday... i'll repost on that soon
Reply With Quote
  #117  
Old 08-09-2012, 04:16 PM
vbenhancer's Avatar
vbenhancer vbenhancer is offline
 
Join Date: Dec 2009
Location: Qu?bec city, Canada
Posts: 740
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by reteep View Post
Any news on a possible update for usercp etc.?
the usercp is my next update, i had to re-upload a compatible version for vB 4.2, which i forgot to post during my family vacations... it's now done!
Reply With Quote
Благодарность от:
reteep
  #118  
Old 08-10-2012, 07:18 AM
ywwz ywwz is offline
 
Join Date: Jul 2009
Posts: 255
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by glen290 View Post
Working fine on my site with DBtechs Forum Live feed

tagged if these two mods work together!
Reply With Quote
  #119  
Old 08-10-2012, 07:26 AM
ywwz ywwz is offline
 
Join Date: Jul 2009
Posts: 255
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by glen290 View Post
Working fine on my site with DBtechs Forum Live feed

tks for sharing! will install it tonight! ahahahahahaha so happy ah
Reply With Quote
  #120  
Old 08-13-2012, 09:50 PM
KySportsReport KySportsReport is offline
 
Join Date: Aug 2012
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Working great for me, thanks! Just what we wanted to get our content into the forums so the users can see the stories and such. Thrilled this was out there, mucho gracias!
Reply With Quote
  #121  
Old 08-19-2012, 05:15 AM
JackieChun JackieChun is offline
 
Join Date: Apr 2009
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm not sure if I imported this right, but the options of different pages are not showing up for me. I uploaded the nex folder to the vbulletin directory and then imported product-nex_sidebar_everywhere_42 on the Products page in admincp. I created a random product name and ID, since it wasn't there by default.
Reply With Quote
Reply

Thread Tools

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 04:05 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.04867 seconds
  • Memory Usage 2,355KB
  • Queries Executed 28 (?)
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
  • (6)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
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (3)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (8)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_postinfo_query
  • fetch_postinfo
  • 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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • 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