Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Delete The Categories and Recent Comments
10-08-2010, 07:54 PM (This post was last modified: 10-08-2010 08:12 PM by online28.)
Post: #1
Delete The Categories and Recent Comments
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
Find all posts by this user
Quote this message in a reply
10-08-2010, 09:05 PM
Post: #2
RE: Delete The Categories and Recent Comments
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
Find all posts by this user
Quote this message in a reply
10-08-2010, 09:14 PM (This post was last modified: 10-08-2010 09:15 PM by admin.)
Post: #3
RE: Delete The Categories and Recent Comments
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
Find all posts by this user
Quote this message in a reply
11-08-2010, 06:26 AM
Post: #4
RE: Delete The Categories and Recent Comments
It doesn't work on larger the pic
I mean the thumb of the video
larger the thumb
Find all posts by this user
Quote this message in a reply
11-08-2010, 09:49 AM
Post: #5
RE: Delete The Categories and Recent Comments
after edit the codes be sure you clean caches for video tables

i think you see caches
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: