PDA

View Full Version : Customizing templates


techmonkey
06-06-2004, 12:06 PM
I'm new to VB3..... I can't seem to find the templates vbAdvanced usesfor its modules. How/where do I make modifications to the main page for example?

Also - I really like how I can display the forum header without the nav bar. If I wanted to use this same code on other site features, like photopost, where would I get that code?

Thanks!

Brian
06-06-2004, 12:23 PM
The templates are located in your Style Manager with your other vBulletin templates, listed under 'vBadvanced CMPS' (should be the first set that you can collapse).
I haven't looked at PhotoPost in well over a year, so I'm not sure if I can't help you much with that one... If I remember correctly though, there's some file that you have to add to have it integrate with vBulletin. You could try adding a variable to that file... Something like:

$photopostscript = true;

Then add an if condition at the very beginning of your 'navbar' template that would look like this:

<if condition="!$photopostscript">
<!-- navbar content here -->
</if>