Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Great script ! need a littile supprt
06-04-2011, 08:17 PM
Post: #1
Great script ! need a littile supprt
Hi

I am new. Install a script. Very good.
Please can somebody tell me how i can clear default menu
HOME PAGE VIDEOS POPULAR VIDEOS GAMES POPULAR GAMES CONTACT

I would like to have only HOME POPULAR and CONTACT

Is it possible? How?

Best wishes

XXXTUBEVIDEO
Visit this user's website Find all posts by this user
Quote this message in a reply
06-04-2011, 10:53 PM (This post was last modified: 06-04-2011 10:54 PM by admin.)
Post: #2
RE: Great script ! need a littile supprt
open include/functions.php
and find the below function
PHP Code:
function call_menuler()

{
global 
$root_url,$lcl;
return 
'<li><a href="'.$root_url.'">'.$lcl['homepage'].'</a></li>
<li><a href="'
.$root_url.'">'.$lcl['videos'].'</a></li>
            <li><a href="'
.$root_url.'?option=popular">'.$lcl['popularvideos'].'</a></li>
            <li><a href="'
.$root_url.'?option=games">'.$lcl['games'].'</a></li>
            <li><a href="'
.$root_url.'?option=populargames">'.$lcl['populargames'].'</a></li>
            <li><a href="'
.$root_url.'?option=contact">'.$lcl['contact'].'</a></li>';


and chage it as below

PHP Code:
function call_menuler()

{
global 
$root_url,$lcl;
return 
'<li><a href="'.$root_url.'">'.$lcl['homepage'].'</a></li>
            <li><a href="'
.$root_url.'?option=popular">'.$lcl['popularvideos'].'</a></li>
            <li><a href="'
.$root_url.'?option=contact">'.$lcl['contact'].'</a></li>';

Find all posts by this user
Quote this message in a reply
07-04-2011, 12:35 AM
Post: #3
RE: Great script ! need a littile supprt
IT WORKS GREAT THANKS

XXXTUBEVIDEO
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: