Free Adult Tube-Video Script Forum

Full Version: Great script ! need a littile supprt
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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>';

IT WORKS GREAT THANKS
Reference URL's