Free Adult Tube-Video Script Forum

Full Version: Delete The Categories and Recent Comments
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to Delete the categories column and Recent Comments column? which is on the left hand side
and I want larger the pic too.HuhHuh
Also, How to updata the video automatically?
For example, I want to updata the Teen categorie's video of YouPorn.com automatically
thank you very much
open include/functions.php

to disable recent comments;
find
PHP Code:
function recent_comments()
 
 {
 global 
$cache_time

at line 976

chage it as bellow
PHP Code:
function recent_comments()
 
 {
return 
false;
 global 
$cache_time

to disable categories
find;
PHP Code:
function categories()
 
 {
 
 
 global 
$cache_time

at line 871

chage it as below
PHP Code:
function categories()
 
 {
 return 
false;
 
 global 
$cache_time


it is not possible add the videos auto
to make the pics larger
open include/functions.php

find

PHP Code:
$data=$data.'<td  valign="top"><a  href="'.$root_url.$linki.'"><div align="center"><img multiple_thumbnail_url="g" class="video-thumb" border="0" src="'.$root_url.'img/thumb/'.$row['v_id'].'_0.jpg" num="'.$row['num'].'" id="thumb'.($i+1).'" alt="'.urldecode($row['title']).'" width="160" height="120" /></div>'.urldecode($row['title']).'</a></td>'

at line 504

also find
PHP Code:
$data=$data.'<td  valign="top"><a  href="'.$root_url.$linki.'"><div align="center"><img multiple_thumbnail_url="g" class="video-thumb" border="0" src="'.$root_url.'img/thumb/'.$row['v_id'].'_0.jpg" num="'.$row['num'].'" id="thumb'.($i+1).'" alt="'.urldecode($row['title']).'" width="160" height="120" /></div>'.urldecode($row['title']).'</a></td>'
at line 541

edit width="160" height="120" for two codes as you want
It doesn't work on larger the pic
I mean the thumb of the video
larger the thumb
after edit the codes be sure you clean caches for video tables

i think you see caches
Reference URL's