Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Delete The Categories and Recent Comments
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
Post Reply 


Messages In This Thread
RE: Delete The Categories and Recent Comments - admin - 10-08-2010 09:05 PM

Forum Jump: