Log in

View Full Version : Check if forum is offline


ChrisChristian
08-02-2009, 05:27 AM
Hi! :)

Can someone tell me if exist some code or hack that I can use in templates to check if the forum is in offline mode?

I have a sidebar in my forum that I want to hide if the forum is offline.

Thanks in advance! :up:

R1lover
08-02-2009, 05:31 AM
when your forum is offline I believe the complete forum is hidden.

are you saying you have some custom code that is not being hidden?

HMBeaty
08-02-2009, 05:35 AM
I'm pretty sure you could use something like this:

(if in a template)
<if condition="$vboptions[bbactive] == Yes"></if>

(if in a php file)
if ($vbulletin->options['bbactive'] == 'Yes')
{
Your code here;
}

ChrisChristian
08-04-2009, 12:37 PM
I'm pretty sure you could use something like this:

(if in a template)
<if condition="$vboptions[bbactive] == Yes"></if>

(if in a php file)
if ($vbulletin->options['bbactive'] == 'Yes')
{
Your code here;
}

Thank you!

This did the job for me:


<if condition="$vboptions[bbactive]"></if>