Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Home
Help
Search
Login
Register
Weather by You!
»
Templates and Projects support
»
Php templates
»
Remove language selection?
« previous
next »
Print
Pages: [
1
]
Author
Topic: Remove language selection? (Read 7061 times)
BestGear
Jr. Member
Posts: 32
Remove language selection?
«
on:
February 03, 2016, 03:32:07 AM »
Guys
Is there an easy way to remove the language selection drop down from the top menu and leave it at English?
I appreciate that the template update will no longer work... for obvious reasons!
Thanks
David
Logged
Penicuik Weather -
http://weather.penicuik.org
BestGear
Jr. Member
Posts: 32
Re: Remove language selection?
«
Reply #1 on:
February 03, 2016, 07:36:53 AM »
Hi
Had a wee look in header_menu.php and have removed the code below - is that correct!??!?
Or - should I have done it more delicately?
********************************************************
<form id="lang_sel" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<p style="color: #fff">Language:
<select name="langue" class="styled" title="Select one" onchange="document.forms[0].submit();return false;">
<?php
$inc = 0;
while($inc < $nb_langues) {
if($languages[$inc][0] == $lang)
echo '<option value="'.$languages[$inc][0].'" selected="selected">'.$languages[$inc][1].'</option>'."\n";
else
echo '<option value="'.$languages[$inc][0].'">'.$languages[$inc][1].'</option>'."\n";
$inc = $inc + 1;
}
?>
</select></p>
</form>
Logged
Penicuik Weather -
http://weather.penicuik.org
Mr.Meteo
Administrator
Hero Member
Posts: 1120
Re: Remove language selection?
«
Reply #2 on:
February 03, 2016, 01:20:30 PM »
Hi David,
Yes, you've found the right thing to remove.
Default language is already set to English,
so nothing else to do!
Regards,
Jacques
Logged
Please, consider supporting this site
BestGear
Jr. Member
Posts: 32
Re: Remove language selection?
«
Reply #3 on:
February 03, 2016, 03:12:19 PM »
Quote from: Mr.Meteo on February 03, 2016, 01:20:30 PM
Yes, you've found the right thing to remove.
Regards,
Jacques
Many thanks.... just thought its best to check with the Master!!
Logged
Penicuik Weather -
http://weather.penicuik.org
Print
Pages: [
1
]
« previous
next »
Weather by You!
»
Templates and Projects support
»
Php templates
»
Remove language selection?