Joeychgo
05-10-2005, 10:00 PM
If your like me, you have several hacks installed on you vBulletin. Unfortunately, those hacks sometimes leave alot of extra templates running stray in your style manager. Well, some of them you can clean up.
in includes/adminfunctions_template.php look for:
'subscription' => $vbphrase['group_paid_subscriptions'],
below it, add a similar line for the particular hack you want all of its templates in.
For example, if you have the vBGarage (http://www.vbulletin.org/forum/showthread.php?t=74961) Hack, you'll want to use:'vbgarage' => $vbphrase['vbgarage'],
If you have the Links and Files Database (http://www.vbulletin.org/forum/showthread.php?t=60403) hack you'll want to use:'links' => $vbphrase['links'],
This wont help you if the templates dont have the same prefix, or if they dont use phrases, but if the hack does, this should group all the templates for a particular hack into a folder and keep your style manager organized.
-
in includes/adminfunctions_template.php look for:
'subscription' => $vbphrase['group_paid_subscriptions'],
below it, add a similar line for the particular hack you want all of its templates in.
For example, if you have the vBGarage (http://www.vbulletin.org/forum/showthread.php?t=74961) Hack, you'll want to use:'vbgarage' => $vbphrase['vbgarage'],
If you have the Links and Files Database (http://www.vbulletin.org/forum/showthread.php?t=60403) hack you'll want to use:'links' => $vbphrase['links'],
This wont help you if the templates dont have the same prefix, or if they dont use phrases, but if the hack does, this should group all the templates for a particular hack into a folder and keep your style manager organized.
-

