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 |
#672
|
||||
|
||||
Quote:
You edit templates via the Admin CP. Styles & Templates >> Style Manager >> Edit Templates (chose this from the drop down box for the particular style you want to edit) >> chose which template you want to edit. |
#673
|
|||
|
|||
I'm sorry my ignorance, I really understand very little of vbulletin, I made it in the editing area as you indicated, but did not understand what I edit. information by editing, I should change the template in 3 parts, the first part I need to enter a code before the tag </ head> right? I found this tag within a "activateform" and insert the code. Is that correct? The second is to modify the content between the <! - Main -> but I can not find the right place.
These are the installation instructions, help me with this part of me showing how to do? ========================= FORUMHOME TEMPLATE EDIT 1 ========================= INSERT THE BELOW LINE OF CODE RIGHT BEFORE </head> <!-- Tabbed Forum Home Header Code --> <!-- TFH CSS --> <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" /> <!-- YUI Library --> <script type="text/javascript" src="http://yui.yahooapis.com/2.7.0/build/utilities/utilities.js"></script> <script type="text/javascript" src="http://yui.yahooapis.com/2.7.0/build/tabview/tabview-min.js"></script> <!-- YUI Library Extension: Dispatcher --> <script type="text/javascript" src="http://js.bubbling-library.com/2.1/build/dispatcher/dispatcher-min.js"></script> <!-- /Tabbed Forum Home Header Code --> ========================= FORUMHOME TEMPLATE EDIT 2 ========================= REPLACE: <!-- main --> *all the Default vb CODE between the remarks* <!-- /main --> WITH: <!-- 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 tfh} </script> <!-- /Tabbed Forum Home --> {vb:raw template_hook.forumhome_below_forums} <!-- /main --> NOTE: IF YOU HAVE CUSTOM <!-- main --> through <!-- /main --> CODE, YOU WILL NEED TO COPY IT AND REPLACE THE DEFAULT CODE IN THE FORUMHOMETAB TEMPLATE ===================== FORUMHOMETAB TEMPLATE ===================== THIS IS AUTOMATICALLY CREATED FOR YOU BASED ON DEFAULT VB4. NOTE: YOU ONLY NEED TO EDIT THIS IF YOU HAVE A CUSTOM STYLE THAT HAS A DIFFERENT FORUMHOME <!-- main --> **CUSTOM CODE** <!-- /main --> CODE <!-- main --> <ol id="forums" class="floatcontainer"> {vb:raw forumbits} </ol> <!-- /main --> {vb:raw forumhome_markread_script} NOTE: IF YOU HAVE A CUSTOM STYLE WITH DIFFERET <!-- main --> **CUSTOM** <!-- /main --> CODE, Replace with your custom code. You do need to leave the last line ( {vb:raw forumhome_markread_script} ) in place tho as that is used for marking the forum(s) as READ. ================================================ forumhome_forumbit_level1_nopost TEMPLATE EDIT 1 ================================================ INSERT AT BEGINNING OF TEMPLATE: <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')"> ================================================ forumhome_forumbit_level1_nopost TEMPLATE EDIT 2 ================================================ INSERT AT END OF TEMPLATE: </vb:if> ============================================== forumhome_forumbit_level1_post TEMPLATE EDIT 1 ============================================== INSERT AT BEGINNING OF TEMPLATE: <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')"> ============================================== forumhome_forumbit_level1_post TEMPLATE EDIT 2 ============================================== INSERT AT END OF TEMPLATE: </vb:if> |
#674
|
|||
|
|||
After all I always get only this. My categories just disappeared. I tried to do this on three styles already. I'm using vB 4.1.6. Can someone help me? Thanks in advance. |
#675
|
||||
|
||||
Quote:
|
#676
|
|||
|
|||
I have some categories and within a forum with several sub-forums, how do I set the tab to show all when clicked, would be: tabindex.php? Tabcat [] = 152
152 is the ID of the category? |
#677
|
|||
|
|||
Anybody ?I made it step by step and still nothing.
|
#678
|
||||
|
||||
Angle, You haven't made any tabs yet...
|
#679
|
||||
|
||||
Have you released this yet??
Quote:
|
#680
|
|||
|
|||
Works great on vB 4.1.7. Minus the hidden tabs when group ID is private. I guess you will have to treat it like a teaser. Although the Moderators tab did not how on regular user group test account. Installed. Such a great mod and blows mybb tabs away.
|
#681
|
||||
|
||||
any new updates coming?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|