Quote:
Originally Posted by AfterWorldForum
The vB4 version of this seems to mess up the navbit a little. Somehow an additional span is wrapped around the code, causing the navbit to jump from where it typically is located. Here's a solution.
In arcade/functions/function.php
look for:
Code:
// we are on vB 4 or later WHOHOOO
$debug = false;
$navbits = $output_array['NAV'];
$navbits = construct_navbits($navbits);
$navbits = construct_navbits(array('' => $ibforums->lang['page_title']));
$navbar = render_navbar_template(construct_navbits($navbits));
Replace with:
Code:
// we are on vB 4 or later WHOHOOO
$debug = false;
$navbits = construct_navbits(array('' => $ibforums->lang['page_title']));
$navbar = render_navbar_template($navbits);
|
I posted something like this in a different thread
https://vborg.vbsupport.ru/showthread.php?t=238809
will check it out thanks
*update
your edit gets ride of the space but keep arcade on every page..
the one I posted does not
screenshots added.
there is still a bug in it tho but the spacing is fixed unless it adds a link
Quote:
Originally Posted by teamsupra
Since v.4.x came out a lot of sites are running vb using forum.php It is pretty bad that with this arcade you can not tell it what the main file is, as it assumes index.php then you have to modify the index.php to include IBP information. Can we get an option in game settings to change the default from index to whatever .php
|
open up admincp and scroll down to plugin manager..
now look for ibProArcade: ARCADE Template Cache
open it up, in there youll see..
Code:
if ((THIS_SCRIPT == 'index') || (THIS_SCRIPT == 'arcade'))
change it to this
Code:
if ((THIS_SCRIPT == 'forum') || (THIS_SCRIPT == 'arcade'))
not tested but I think it will do what your explaining
like samandsam said I have not had a problem with this either..
let me know if it works for you..
make sure you back up the code, just in case you need to revert it back..