How to move location of the FORUMHOME.
To make it a hackless install (no template edits) this places a template on a unique "anchor" within the FORUMHOME template.
Code:
$search_text = '$navbar';
$vbulletin->templatecache['FORUMHOME'] = str_replace($search_text,
$search_text.fetch_template('forumhome_honorable'),$vbulletin->templatecache['FORUMHOME']);
This says SEARCH for $navbar in template FORUMHOME and place template "forumhome_honorable" after.
Edit Plugin: Honorable Member: Forumhome
Find:
Code:
$search_text = '$navbar';
Change $navbar to where you wish to place the hack.
Anchor spots: (this will place in FORUMHOME)
$header - Above the Navbar
$navbar - Below the Navbar
<!-- what's going on box --> - Above what's going on box.
<!-- end what's going on box --> - Below what's going on box.
Many others explore :squareeyed:
(text / comment that is different than anything else in the template.)