I'm wondering where I could find the header and navbar in vaultwiki (version 4) pages?
I tried searching for vb:raw header or vb:raw navbar and such and couldn't find it.
Thanks
Printable View
I'm wondering where I could find the header and navbar in vaultwiki (version 4) pages?
I tried searching for vb:raw header or vb:raw navbar and such and couldn't find it.
Thanks
Gamma 6 and below uses the vBulletin template GENERIC_SHELL. Gamma 7 and above will use vw_general_shell
Thank you. Also, what's the script name for VW?
I'm trying to do something like
Code:<vb:if condition="THIS_SCRIPT == 'calendar'">Show this only on calendar.php</vb:if>
- filename => THIS_SCRIPT
- wiki_index.php => vw_wiki_index.php
- wiki_asset.php => vw_wiki_asset.php
- wiki_inlinemod.php => vw_wiki_inlinemod.php
And so forth.
Another check that might work without referencing a specific script name is:
Code:<vb:if condition="!defined('VW_SCRIPT') OR VW_SCRIPT != THIS_SCRIPT">
// this is a wiki script
<vb:else />
// this is a forum script
</vb:if>