Log in

View Full Version : Show Thread Enhancements - Threads horizontal and posts vertical


xman_79
03-04-2017, 10:00 PM
Description
This modification allows to have your threads in horizontal mode (postbit) and the posts in vertical mode (postbit_legacy).
In French (http://www.vbulletin-ressources.com/forum/threads/17715-Sujet-en-horizontal-et-messages-en-vertical)


Conception
Author : Suleiman (http://www.vbulletin-ressources.com/forum/members/1639-suleiman)
Compatibility : 4.x.x
Tested : 4.0. ---> 4.2.2


First step
Follow AdminCP -> Settings -> options -> Style & Language Settings -> Use Legacy (Vertical) Postbit Template : NO


Plugin 1
Follow AdminCp -> Plugins & Products -> Add New Plugin
Product : Vbulletin
Hook Location : postbit_display_complete
Title : postbit & postbit_legacy
Plugin PHP Code


$this->templatename = ($post['postcount'] == '1') ? 'postbit' : 'postbit_legacy';

Plugin is Active : Yes



Plugin 2
Follow AdminCp -> Plugins & Products -> Add New Plugin
Product : Vbulletin
Hook Location : cache_templates
Title : Cache Template: postbit_legacy
Plugin PHP Code


if($vbulletin->options['legacypostbit'] == '0' AND THIS_SCRIPT == 'showthread')
{
$cache[] = 'postbit_legacy';
}

Plugin is Active : Yes


https://vborg.vbsupport.ru/attachment.php?attachmentid=155937&stc=1&d=1488713177