|
v3arcade: Set Start Category ID
This modification is in the archives.
This will allow you to set the initial category when entering v3arcade. I had wanted to make the initial category selectable from the AdminCP, but for the time being this will work.
Please note the following:
Time for modification: < 1 minute In v3arcade.php, find: Code:
// Now, let's get the games.
$vbulletin->input->clean_array_gpc('r', array(
'categoryid' => TYPE_INT
));
Below this, add the following: Code:
// *** BEGIN: SET START CATEGORY IN V3ARCADE *** //
if(empty($vbulletin->GPC['categoryid']))
{
$vbulletin->GPC['categoryid'] = 1;
}
// *** END: SET START CATEGORY IN V3ARCADE *** //
Change the line above to the category ID that you want the arcade to open into by default. Download No files for download. |
|||||||||
Similar Mods
| Add-On Releases v3arcade Add Game Category when you Mass Game Import | vBulletin 3.6 Add-ons |
| V3Arcade Category search fix | vBulletin 3.0 Full Releases |