Free Adult Tube-Video Script Forum

Full Version: Can I change the links of Game to other links?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can I change the links of Game to other links?
for example, Change the name of Game to Yahoo
and the link change to http://www.yahoo.com
open include/functions.php
find function call_menuler() line at line 206

you will see below code under line 206

PHP Code:
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>'

change it as you want
Yes it is the right code you must edit, but then it just right where you need to fix?

After a few hours then managed finally to me, to others who also want GAMES example for an external link, here is information about where you just need to fix / add in the code. The code which I have described here opens the external links in a new page.

The code is adjusted:
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="http://www.YOUR PAGE.dk" TARGET="_blank'.$root_url.'?option=games">'.$lcl['games'].'</a></li>
<li><a href="http://www.YOUR PAGE.dk" TARGET="_blank'.$root_url.'?option=populargames">'.$lcl['populargames'].'</a></li>
<li><a href="'.$root_url.'?option=contact">'.$lcl['contact'].'</a></li>';


Sincerely,
Anders Pedersen
(22-09-2010 06:09 AM)raptus3670 Wrote: [ -> ]Yes it is the right code you must edit, but then it just right where you need to fix?

After a few hours then managed finally to me, to others who also want GAMES example for an external link, here is information about where you just need to fix / add in the code. The code which I have described here opens the external links in a new page.

The code is adjusted:
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="http://www.YOUR PAGE.dk" TARGET="_blank'.$root_url.'?option=games">'.$lcl['games'].'</a></li>
<li><a href="http://www.YOUR PAGE.dk" TARGET="_blank'.$root_url.'?option=populargames">'.$lcl['populargames'].'</a></li>
<li><a href="'.$root_url.'?option=contact">'.$lcl['contact'].'</a></li>';


Sincerely,
Anders Pedersen

CORECTED ONE IS BELLOW

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="http://www.YOUR PAGE.dk" TARGET="_blank">YOUR LETTER</a></li>
<li><a href="http://www.YOUR PAGE.dk" TARGET="_blank">YOUR LETTER</a></li>
<li><a href="'.$root_url.'?option=contact">'.$lcl['contact'].'</a></li>';
Reference URL's