Banners must have the code in them for calling banners ...
For example, this blocks the box from showing if the setting is empty:
Code:
// test if box should display
$show_banner_box2 = true;
if (SHOW_BANNERS_GROUP_SET8 == '') {
$show_banner_box2 = false;
}
That configuration_key SHOW_BANNERS_GROUP_SET8 is in the configuration table and if not set, no sidebox shows, even if turned on ...
This setting, tells the banner what to get from the database:
Code:
$banner_box_group= SHOW_BANNERS_GROUP_SET8;
Again, if blank, then nothing is retreived ...
You will need to make your own settings that constant to say which Banner Group to include or nothing will show ...
This can be done in the database, or at the top of the module for the sidebox you can just put it in as a define statement ...