The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[YUI] Tabbed Forum Home Details »» | ||||||||||||||||||||||||||||||||||
[YUI] Tabbed Forum Home (TFH) version 4.0.8
vBulletin version: 4.1.11 - 4.2.0 Older versions need original mod for now Description: This MOD is for creating a "Tabbed" Forum Home Page to have Categories and other Data types (via Modules) displayed within Tab containers. Please do not confuse this with the Tab Menu System here at vbulletin.org. They are totally different systems. These Tabs actually switch the content via AJAX without leaving the main forums page. This is an entirely new version of TFH and only works with vB4. Management is all done via the Admin CP. Installation is done in 3 simple steps. Upload files, Import product, 3 easy Template Edits. Setup is now a breeze via the Tabs option in the Admin CP. The attached Zip File contains the Files and Instructions necessary to install. Incompatible mods Two columns of categories - https://vborg.vbsupport.ru/showthread.php?t=275114 Upgrading to 4.0.7+ from previous versions We have had to change the mod's id which means when you install this time you will have 2 mods, the new version with its new id and the old version. Both can run side by side but shouldnt to save processing time. To migrate: Install the latest version and upload all the files (no conflicts to worry about) Install the latest product xml Follow the template changes in the upgrade txt Create your tabs in the new admincp menu option "EG: Tabbed Forum Home" to mirror the existing "Tabbed Forum Home" menu. Once done uninstall the product "Tabbed Forum Home" with productid bobster_tfh (old mod id) Change Log: VERSION 4.0.8 2nd August 2012 Changes: > Fixed several database bugs > Fixed several legacy redirect bugs > Fixed static path problem for scripts (this should resolve some 4.0.7 blank forum issues) > Thanks to Bluefin221 & LgsOfChampions VERSION 4.0.7 1st August 2012 Changes: > New Mod ID - YOU MUST MIGRATE SETTINGS MANUALLY > vBulletin 4.1.11+ required > JS loaded after drawing > Remote YUI JS (partial) support > Fixed instructions typo > All previous fixes in 4.0.5 that caused no bugs VERSION 4.0.5 27th April 2012 Changes: > This version should be used with vbulletin 4.1.11+ > Compatibility with JS changes in vbulletin 4.1.11+ > Upgraded to run with YUI 2.9.0 > Local versions of files to minimise loading issues > Upgraded to Dispatcher 2.2 > Reduced size of forumindextab generator and reduced size to boost performance > Added a template cache call to reduce load > Added loader animation and box when tab is clicked and loading. Original Change Logs for bobster65 & King Kavor releases VERSION Beta 2b 23 March 2010 Changes: > CSS Conflict resolved VERSION Beta 2 19 March 2010 > CSS Conflict resolved > Upgrade to YUI 2.7.0 & Dispatcher 2.1 > Minor Bug fixes Originally created by bobster65 & King Kovifor Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
13 благодарности(ей) от: | ||
Abhik, arob42, fxdigi-cash, hexeditor, Michael.A, mircea1st, mohammadxxx, mokujin, nacaruncr, Ricsca, Teascu Dorin, Zacca87, zbahadir |
Comments |
#922
|
|||
|
|||
Quote:
Code:
yui-nav Code:
yui-navset yui-navset-top Update: it turns out that the style as I said located in the included css files with the mod. Check out both skin-tfh.css and tabview.css now I'm 100% sure it is from there. Good luck |
Благодарность от: | ||
Amaury |
#923
|
|||
|
|||
hi,
which version of vb are you running the mod on? also, notice if your forums in your forum home view disappeared means it is working... can you show us the code where you changed this below before modifications? sounds like there is something incorrect... Quote:
|
#924
|
|||
|
|||
Quote:
I think you mean that you want to view different tabs inside the forums not only the forum home.... I really didn't try that, but there is the code for tabs view, you can place it in the right forum page Code:
<!-- main --> {vb:raw template_hook.forumhome_above_forums} <!-- Tabbed Forum Home --> <div id="forumhome_container" style="margin-top:5px"> </div> <script type="text/javascript"> {vb:raw eg_tfh} </script> <!-- /Tabbed Forum Home --> {vb:raw template_hook.forumhome_below_forums} <!-- /main --> in the following pages: forumhome_forumbit_level1_post, forumhome_forumbit_level2_post, if it didn't work, then I believe there must be some tab code interruption... [/S] I tried that all, but didn't work. there must be some sort of deep modification. sorry about that |
#925
|
|||
|
|||
Hi there...
I dont understand what I have to do... maybe you can have a look at yesdukan.de or tell me what I have to show. I changed nothing in that template manually until installing YUI Tabbed Forum Home Oh i forgot: Its (vBulletin 4.2.0 Patch Level 3) |
#926
|
||||
|
||||
Great mod, however I have a question.
If you set Cache Data to YES so the tabs load quicker will this make it so if new posts etc are updated it wont refresh it or what? Like what are the pro's and cons of having it on YES/NO? |
#927
|
|||
|
|||
Quote:
ok, here you are again, make sure you follow the instructions step by step: Code:
> STEP 1: Upload Files located in the UPLOAD FOLDER to your FORUM ROOT i.e. vb.
Code:
> STEP 2: Import Product XML File (product-edugeek_tfh) Code:
STEP 3: change the coding in your templates as the following: find through search template in you admin cp: FORUMHOME find the code: </head> and directly above it, insert the following code: <!-- Tabbed Forum Home Header Code 4.0.8 --> <link rel="stylesheet" type="text/css" href="{vb:raw vboptions.bburl}/tfh/tabview.css" /> <link rel="stylesheet" type="text/css" href="{vb:raw vboptions.bburl}/tfh/skin-tfh.css" /> <!-- TFH JS --> <script type="text/javascript"> <!-- if (remoteyui) { document.write('<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/tfh/dispatcher-min.2.2.js"></script>'); document.write('<script type="text/javascript" src="http://yui.yahooapis.com/2.9.0/build/element/element-min.js"></script>'); document.write('<script type="text/javascript" src="http://yui.yahooapis.com/2.9.0/build/tabview/tabview-min.js"></script>'); } else { document.write('<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/tfh/dispatcher-min.2.2.js"></script>'); document.write('<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/yui/element/element-min.js"></script>'); document.write('<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/yui/tabview/tabview-min.js"></script>'); } //--> </script> <!-- /Tabbed Forum Home Header Code --> Code:
> step4: find the code <!-- main --> in template FORUMHOMETAB replace whatsoever between <!-- main --> and <!-- /main --> with the following code: <!-- main --> {vb:raw template_hook.forumhome_above_forums} <!-- Tabbed Forum Home --> <div id="forumhome_container" style="margin-top:5px"> </div> <script type="text/javascript"> {vb:raw eg_tfh} </script> <!-- /Tabbed Forum Home --> {vb:raw template_hook.forumhome_below_forums} <!-- /main --> Code:
> Step5: find the template forumhome_forumbit_level1_nopost and insert the following code on the top of it ######################### INSERT AT THE START >>> --------------- <vb:if condition="(THIS_SCRIPT=='indexTFH' AND (in_array($forum['forumid'], $_REQUEST['tabcat']) OR in_array('all', $_REQUEST['tabcat']))) OR (THIS_SCRIPT=='forumdisplay') OR (THIS_SCRIPT=='index')"> ######################### INSERT AT THE END >>> ------------ </vb:if> Code:
> Step5: find the template forumhome_forumbit_level1_post and insert the following code on top of it as well: ######################### INSERT AT THE START >>> --------------- <vb:if condition="(THIS_SCRIPT=='indexTFH' AND (in_array($forum['forumid'], $_REQUEST['tabcat']) OR in_array('all', $_REQUEST['tabcat']))) OR (THIS_SCRIPT=='forumdisplay') OR (THIS_SCRIPT=='index')"> ######################### INSERT AT THE END >>> ------------ </vb:if> Cheers |
#928
|
|||
|
|||
Quote:
how does it work?? it catches a copy of your forums and subforums in each tab this property used and re-use it again whenever a user reload the page; it works like a snapshot of your forum look, but never change anything even if you added new forums or subforums... so it is always preferred to deactivate this feature if you have forums or subforums changed from time to time... I hope this helps. |
#929
|
|||
|
|||
It is possible to show only selected forum rest hide
|
#930
|
|||
|
|||
of course you. This mod if worked correctly, it will hid all forums till you create tab for each forum to show up... so you can hide all forums if you like and show only one forum...
|
#931
|
||||
|
||||
Does anyone know how to make this work with social groups? I'm using this mod https://vborg.vbsupport.ru/showthread.php?t=221581
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|