Quote:
Originally Posted by eblivion
vBulletin allows the use of <if condition="THIS_SCRIPT == 'page'">
to display different things based on the current page.
How do I get the similar affect with vBAdvanced?
They wouldn't provide any support to me since it's a mod.
I installed the vBAdvanced Homepage mod which is at: mydomain.com/index.php. All of the regular forum pages are at: mydomain.com/forum/xxx.php
I added the following to the phpinclude_start template:
define('THIS_SCRIPT2', '../page');
I wanted to use the same header file for all pages instead of the index_header on the vBAdvance page. In the header template, I added:
<if condition="$THIS_SCRIPT2 == 'index'">
do something
<else />
do this instead
</if>
It doesn't work. Am I doing something wrong?
|
If you want to use the header your using on your forums. can't you find in the portal/index.php something that is calling the index_header template? Should look something like.
PHP Code:
eval('$blah = "' . fetch_template('index_hader') . '";');
Just change to
PHP Code:
eval('$header = "' . fetch_template('header') . '";');
If that is what you are trying to do,