Quote:
Originally Posted by efc9
in vBTube.php find:
Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$_GET['do'] = 'featured';
}
and change to:
Code:
if ((!$_GET['do'] || $_GET['do'] == ''))
{
$search='<insert search term>';
$_GET['do'] = 'search';
}
replace <insert search term> with your search term and that'll show the search instead of the featured videos on the frontpage.
|
If I remove the featured videos and add my own terms as listed above how can I add the featured videos to the left side navigation?