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

Reply
 
Thread Tools
VSa - Sub-Forum Manager Details »»
VSa - Sub-Forum Manager
Version: 3.1.4, by Valter Valter is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 4.x.x Rating:
Released: 02-25-2010 Last Update: 03-31-2012 Installs: 1855
Uses Plugins Auto-Templates
 
No support by the author.

Info:
-This is used to arrange sub-forums into columns on forumhome.
-You can add thread/post counts to sub-forums, hide "Sub-forums" title, customize CSS, and more...

Installation:
-Import XML file (as product): AdminCP > Plugin System > Manage Products > [Add/Import Product]

Notes:
-To get this product working you must set "Depth of Sub-Forums" to "1" in vBulletin Options > Forum Listings Display Options
-To set product options go to: AdminCP > vBulletin Options > VSa - Sub-Forum Manager

Versions:
v1.0 - Apr 24. 2006.
-First release
v2.5.1 - Jun 20. 2009.
-Latest vB 3.x version
v3.0 - Feb 26. 2010.
-Updated for vBulletin 4
-Fixed known bugs
v3.0.1 - Apr 03. 2010.
-Fixed bug where 'Sub-Forums:' is not hidden in some blocks
v3.1 - Oct 31. 2010.
-New: Almost completely rewritten regarding main functionality
-New: Removed all tables - CSS based now
-Fixed bug: Different column widths through categories
-Fixed bug: Unneeded commas in IE
-Fixed bug: Customizations not fully applied to latest category
-Fixed: XHTML errors
-Fixed: Minor bugs
v3.1.1 - Nov 05. 2010.
-Fixed: Sorting issues
-Fixed: Unneeded thread/reply counts in friendly URLs
v3.1.2 - Dec 12. 2010.
-Fixed bug: Forum Moderators listed in a column
v3.1.3 - Nov 19. 2011.
-Fixed: Compatibility issues with vB 4.1.8
v3.1.4 - Apr 01. 2012.
-New Option: Exclude styles
-New Option: Exclude forums
-Fixed some style issues

Download Now

File Type: zip VSa - Sub-Forum Manager v3.1.4.zip (3.8 KB, 6331 views)

Screenshots

File Type: jpg subforums.jpg (62.0 KB, 0 views)
File Type: png acp.png (99.1 KB, 0 views)

Show Your Support

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

Comments
  #312  
Old 11-17-2011, 03:23 PM
Mike-D Mike-D is offline
 
Join Date: Jan 2006
Location: Cologne / Germany
Posts: 270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Valter View Post
Once I update the codes you'll receive update notification.
Thanks for notification, Sir

Quote:
Originally Posted by Valter View Post
So if you really need this add-on you should prolong upgrade to 4.1.8 a bit.
Probably you mean upgrading to 4.17 because this one is compatible to your AddOn The 4.18 does not!
Reply With Quote
  #313  
Old 11-17-2011, 10:04 PM
spillage spillage is offline
 
Join Date: Feb 2009
Location: S. Florida
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The heads-up is greatly appreciated.

This weekend would have seen me doing the 4.1.8 upgrade, but I'm more than happy to put it off a week.

Consideration for other... a sadly lacking attribute in this day and age... you Sir, are to be commended.
Reply With Quote
Благодарность от:
CharlieDelta
  #314  
Old 11-18-2011, 02:26 PM
cgway.net cgway.net is offline
 
Join Date: Aug 2007
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I confirm also not work in 4.18
Reply With Quote
Благодарность от:
joomla
  #315  
Old 11-18-2011, 08:57 PM
ekool ekool is offline
 
Join Date: Jun 2003
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here's a patch that will fix it.

Code:
--- VSa_SFM.xml-orig	2011-11-18 15:40:34.000000000 -0600
+++ VSa_SFM.xml	2011-11-18 15:48:36.000000000 -0600
@@ -29,7 +32,8 @@
 $vsasfm_getsubs = '';
 
-			$vsasfm_table = '<li><div style="width:100%;'.$vsasfm_css_table.'"><div style="vertical-align:top;clear:both;">';
+                        $vsasfm_table = '<div style="width:100%;'.$vsasfm_css_table.'"><div style="vertical-align:top;clear:both;">';
 
-			$vsasfm_getsubs = explode("<li",ltrim($forum['subforums'],"<li"));
+                        preg_match_all("/<li[^>]*>(.*)[\s\n,]*<\/li>/Usmi",$forum['subforums'],$matches);
+                        $vsasfm_getsubs = $matches[1];
 			foreach ($vsasfm_getsubs AS $vsasfm_subf)
 			{
@@ -37,30 +41,29 @@
 				if ($vsasfm_cols % $vsasfm_reqcol == 0)
 				{
-					$vsasfm_table .= '<div style="float:'.$vsasfm_left.';width:'.$vsasfm_colwid.'%;text-align:'.$vsasfm_left.';'.$vsasfm_css_cell.'"><ul><li'.$vsasfm_subf.'</ul></div></div><div style="vertical-align:top;clear:both;">';
+                                        $vsasfm_table .= '<div style="float:'.$vsasfm_left.';width:'.$vsasfm_colwid.'%;text-align:'.$vsasfm_left.';'.$vsasfm_css_cell.'">'.$vsasfm_subf.'</div></div><div style="vertical-align:top;clear:both;">';
 				}
 				else
 				{
-					$vsasfm_table .= '<div style="float:'.$vsasfm_left.';width:'.$vsasfm_colwid.'%;text-align:'.$vsasfm_left.';'.$vsasfm_css_cell.'"><ul><li'.$vsasfm_subf.'</ul></div>';
+                                        $vsasfm_table .= '<div style="float:'.$vsasfm_left.';width:'.$vsasfm_colwid.'%;text-align:'.$vsasfm_left.';'.$vsasfm_css_cell.'">'.$vsasfm_subf.'</div>';
 				}
 			}
-
-			$vsasfm_table .= '</div></div></li>';
+                        $vsasfm_table .= '</div></div>';
 
 			$vsasfm_table = str_ireplace('<li<', '<', $vsasfm_table);
 			$vsasfm_table = str_ireplace('VSa</a>', '', $vsasfm_table);
Reply With Quote
  #316  
Old 11-18-2011, 09:54 PM
Mike-D Mike-D is offline
 
Join Date: Jan 2006
Location: Cologne / Germany
Posts: 270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nope, it does not work. But thank you for your support to help us I appreciate it!
Reply With Quote
  #317  
Old 11-18-2011, 10:52 PM
ekool ekool is offline
 
Join Date: Jun 2003
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Post removed by me... version works now. Thanks.
Reply With Quote
Благодарность от:
Mike-D
  #318  
Old 11-18-2011, 11:33 PM
iCafe's Avatar
iCafe iCafe is offline
 
Join Date: Jun 2005
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ekool View Post
It's working for me What doesn't work about it. How did you apply the patch?

I'm going to attach the full XML to make it easier. My apologies if the original author doesn't want me to do this I'll take it down right away. Just trying to help.

it'work.

thank you
Reply With Quote
  #319  
Old 11-18-2011, 11:43 PM
Erica1977's Avatar
Erica1977 Erica1977 is offline
 
Join Date: Nov 2009
Location: Laramie, Wyoming
Posts: 205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ekool View Post
It's working for me What doesn't work about it. How did you apply the patch?

I'm going to attach the full XML to make it easier. My apologies if the original author doesn't want me to do this I'll take it down right away. Just trying to help.
Nice only thing that dont work is this part, Hide "Sub-Forums:" title i have it set to no.
Reply With Quote
  #320  
Old 11-19-2011, 01:34 AM
fabiocesar fabiocesar is offline
 
Join Date: Nov 2007
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

blank line dont work.. =(
Reply With Quote
  #321  
Old 11-19-2011, 01:42 AM
n0obiest n0obiest is offline
 
Join Date: Jan 2011
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Removed !
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 07:39 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.12295 seconds
  • Memory Usage 2,372KB
  • 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
  • (1)bbcode_code
  • (4)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
  • (28)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)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