Thanks for helping me!
I have the latest version installed (at least I think so, I downloaded the file just a couple of hours ago) and I can't spot a setting where I could configure this Add-on.
I had a look the the product's xml file and it installs just one plugin:
PHP Code:
if ($vbulletin->debug)
{
require_once(DIR . '/includes/class_auto_template_compiler.php');
$atc = new vB_Auto_Template_Compiler($vbulletin);
if (is_member_of($vbulletin->userinfo, 6) and $_GET['do'] == 'import')
{
$atc->import_from_database(
DIR . '/templates',
'vbulletin'
);
}
$config = array(
'product' => 'your_product_id',
'version' => '1.0'
);
$atc->process_directory(DIR . '/templates', $config);
What do I have to change to make it work?