Ahhh, ok. Well the easiest way to do that would be to look in your adv_index.php file for this code:
PHP Code:
eval('print_output("' . fetch_template('index') . '");');
Right above that add:
PHP Code:
eval('$custom3 = "' . fetch_template('index_custom3') . '";');
Then create a new template called "index_custom3" and just add $custom3 in your index template. And of course if you need more, you would just change the two places you see the number 3 in that code to 4, 5, and so on.
If you need to add options to turn them on/off, the easiest way would be to put your forum in debug mode for a minute by adding $debug = 1; in your config.php file. Then go to the vBadvanced Homepage settings and add the new settings. If you do that, don't forget to take your board out of debug mode afterwards.