Quote:
Originally Posted by jluerken
How does the template conditional need to look like if I want a text to appear if the forum is closed?
SHOW NOT abc if board is closed, ELSE show def...
|
there is a way to turn of a created page and have a custom message show if you turn the page off
you will need to do this in the php file
example would be...
Code:
// ###### YOUR CUSTOM CODE GOES HERE #####
if (!$vbulletin->options['mymod_active'])
{
eval(standard_error($vbulletin->options['mymod_closedreason']));
}
as Lynne said, if the board is off then they will see the off message from
Reason For Turning Forum Off in Admincp