Hi,

If you want to remove random videos, please do the following steps

Find and remove

1.htaccess
Code:
RewriteRule ^random/(.*) video.php?category=random&page=$1
2.video.php

FIND

PHP Code:
$category_all = array(
    
'random',
    
'recent',
    
'viewed',
    
'discussed',
    
'favorites',
    
'rated',
    
'featured'
); 
REPLACE WITH

PHP Code:
$category_all = array(
    
'recent',
    
'viewed',
    
'discussed',
    
'favorites',
    
'rated',
    
'featured'
); 
FIND AND REMOVE

PHP Code:
else if ($category == 'random')
    {
        
$view['html_title'] = 'Random Videos';
        
$view['display_order'] = 'Random';
        
$sql "SELECT * FROM `videos` WHERE
               `video_type`='public' AND
               `video_active`='1' AND
               `video_approve`='1'
                
$channel_sql
                
$sql_adult_filter
                ORDER BY rand()
                LIMIT 
$start_from$config[num_watch_videos]";
    } 
3.templates/menu_watch.tpl

FIND AND REMOVE

Code:
<li><a href="{$base_url}/{if $smarty.request.viewtype eq "detailed"}detailed/{/if}random/">Random</a></li>
Thanks

Buyscripts Team