-
templates problems
hello,
I'm with trouble with some templates using vaultWiki
1. headers
http://i253.photobucket.com/albums/h...ader_error.png
2. forum display - in some styles
with error
http://i253.photobucket.com/albums/h...oum_error1.png
without error [default style]
http://i253.photobucket.com/albums/h...oum_error2.png
How can I fix this?
All the best
joao barroca
aka beduino
-
1. In vault/special_plugins_forumdisplay.php, find:
PHP Code:
$save['outer'] = $stylevar['outertablewidth'];
Replace with:
PHP Code:
$save['outer'] = $show['old_explorer'] ? $stylevar['outertablewidth'] : $stylevar['outerdivwidth'];
$stylevar[$show['old_explorer'] ? 'outertablewidth' : 'outerdivwidth'] = '100%';
Find:
PHP Code:
$stylevar['outertablewidth'] = $save['outer'];
Replace with:
PHP Code:
if ($show['old_explorer'])
{
$stylevar['outertablewidth'] = $save['outer'];
}
else
{
$stylevar['outerdivwidth'] = $save['outer'];
}
-
2. You need to look into the Display Order 0 / Display in Forum workaround described in the Namespace Tutorial.
-
thanks pegasus :)
I will read and try
But ... the question of headers [first issue], any suggestion?
* I try change the css but I don't fix the width of header section
all the best
joao barroca
-
Did you try the file edits I posted?
-
Hi Pegasus
I've try edit but I can't find this pieces of codes in this php !
*sorry, I probably need change my glasses ...
You can tell me in which line I need edit???
Really sorry the inconvenience
all the best
and tks in advance
barroca
-
The lines mentioned only appear in the newest version 2.2.0.
-
Hello Pegasus
I make the upgrade of vaultWiki and change the code in php file .
Unfortunately don't works
See in
http://i253.photobucket.com/albums/h...oum_error3.png
What I can do now?
Tks in advance
joao barroca
-
What are your settings for the "Sizes and Dimensions" section in your style?
-
Hello
my default style have this ...
http://picasaweb.google.com.br/lh/ph...eat=directlink
all the best
joao
-
I don't know if you see the image ... then size and dimension = 880
tks
-
I see it. I will be trying out these settings today.
-
Oh, since I was unable to duplicate this now, I realized I didn't list all of the file edits earlier. I edited the post on the previous page now. The first edit has been changed.
-
A good news ...
this works! But ...
Quote:
Originally Posted by
pegasus
1. In
vault/special_plugins_forumdisplay.php, find:
PHP Code:
$save['outer'] = $stylevar['outertablewidth'];
Replace with:
PHP Code:
$save['outer'] = $show['old_explorer'] ? $stylevar['outertablewidth'] : $stylevar['outerdivwidth'];
$stylevar[$show['old_explorer'] ? 'outertablewidth' : 'outerdivwidth'] = '100%';
Find:
PHP Code:
$stylevar['outertablewidth'] = $save['outer'];
Replace with:
PHP Code:
if ($show['old_explorer'])
{
$stylevar['outertablewidth'] = $save['outer'];
}
else
{
$stylevar['outerdivwidth'] = $save['outer'];
}
2. this change crashes the public profile view [500 internal error !]
:(
-
This has nothing to do with this change. This file is never called on the profile. Since you are using vBulletin blog, it's likely you are using 2.0.1. In 2.0.1, Jelsoft fixed a bug that made it incompatible in earlier versions, however, we had already implemented a workaround that their fix in turn broke. This should not be causing a 500 error, but an error nevertheless.
In vault/special_plugins_online.php, find:
PHP Code:
$vbulletin->products['vbblog']
Replace with:
PHP Code:
$vbulletin->products['vbblog'] AND file_exists(DIR . '/includes/blog_plugin_online.php')
-
yes I use vbblog :)
I will try and report here ASAP
-
hello
I don't know why this still happens with , for example, this
http://www.vb-brasil.org/forums/members/beduino.html
[I use vbseo]
all php works fine, members profile but when we try see the member profile [like this above]
don't work
-
Not a vbseo issue [I think]
I deactivate this plugin and
HTML Code:
http://www.vb-brasil.org/forums/member.php?u=1&tab=visitor_messaging
don't works too
-
Since this behavior is not occurring here with the same file versions you are using, I think you have installed or updated another product recently that affects the member profile. What other products do you use?