The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
VSa - Sub-Forum Manager Details »» | |||||||||||||||||||||||||||||||
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
Screenshots
Show Your Support
|
27 благодарности(ей) от: | ||
alhidaya, babyv0x, bluered, brbafk, CuteC@t, dvL-den, Elite_360_, farzam.parto, fookaa, halilkoca, Ig@r, Jeromedia603, Manoel J?nior, mapleleaffans, mkkochan, mrblista, nCODE, Neal-UK, pandusetiawan, Skaut, Toorak Times, ukhostz, walas87, WendM, yin9 |
Comments |
#402
|
||||
|
||||
i have installed, done all the stuff described in 'notes' and it doest work
my vb is suite 4+ |
#403
|
||||
|
||||
Here's a fix for mobile-suite working
Write a new plugin Here's the code NOTICE: Replace YOURSTYLEIDHERE Code:
if ($styleid == YOURSTYLEIDHERE){ $vbulletin->options['vsasfm_enable'] = 0; } |
Благодарность от: | ||
Lotos |
#404
|
|||
|
|||
I installed the Mobile style and I think this has caused a problem with this mod. The funny thing is though, when I switched on the HTML Template comments via the Settings it fixed the issue by putting in a malformed 'list' tag.
Anyone else experienced this? I'm using 4.1.10. Addition: I've just copied and pasted TiKu's updated version and now it appears to have fixed the display issue when HTML Comments were enabled so thanks for the fix TiKu!! Just to add that now the opposite happens whereby with HTML Comments active this mod appears to experience a problem though it's not much of an issue now. |
#405
|
|||
|
|||
Hi, I've had this installed for a while now on my forum and it's currently using the latest version. I just started using IE again and noticed that the lists are showing in 1 column instead of 2 in IE. It shows up fine in Firefox though. Any help on fixing this? Forum is www.xbox360clans.net/forum.php
|
#406
|
|||
|
|||
I will try
|
#407
|
||||
|
||||
Is anyone using this add-on with VB 4.1.11? After upgrading to VB 4.1.11, my FORUMHOME is totally broken and I'm unsure whether it's caused by my modifications to this add-on. I only know that disabling the add-on fixes the problem.
|
#408
|
|||
|
|||
no issues here on 4.1.11.
|
#409
|
||||
|
||||
Found it. It's a problem in the add-on, but the consequences are only visible with my modifications.
The real problem is that the add-on compares the template version with this code: Code:
$vbulletin->options['templateversion'] >= '4.1.8' |
#410
|
||||
|
||||
To fix the problem, add this code to MN hook:
Code:
if (!function_exists('vsa_CompareVersions')) { function vsa_CompareVersions($verstr1, $verstr2) { $ver1 = explode('.', $verstr1); $ver2 = explode('.', $verstr2); for($i = 0; $i < 3; $i++) { if(intval($ver1[$i]) > intval($ver2[$i])) return -1; elseif(intval($ver1[$i]) < intval($ver2[$i])) return 1; } return 0; } } Code:
if ($vbulletin->options['templateversion'] >= '4.1.8') Code:
$templateVerIsOlderThan418 = (vsa_CompareVersions($vbulletin->options['templateversion'], '4.1.8') > 0); if(!$templateVerIsOlderThan418) |
#411
|
||||
|
||||
How to disable in defoult mobile vbulletin?
Thanks |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|