Free Adult Tube-Video Script Forum
Great script ! need a littile supprt - Printable Version

+- Free Adult Tube-Video Script Forum (http://freeadultscript.com/forum)
+-- Forum: My Category (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: Great script ! need a littile supprt (/showthread.php?tid=343)



Great script ! need a littile supprt - nesa78 - 06-04-2011 08:17 PM

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


RE: Great script ! need a littile supprt - admin - 06-04-2011 10:53 PM

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>';




RE: Great script ! need a littile supprt - nesa78 - 07-04-2011 12:35 AM

IT WORKS GREAT THANKS