Author Topic: Remove language selection?  (Read 7061 times)

Offline BestGear

  • Jr. Member
  • **
  • Posts: 32
    • Penicuik Weather
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
Penicuik Weather - http://weather.penicuik.org

Offline BestGear

  • Jr. Member
  • **
  • Posts: 32
    • Penicuik Weather
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:&nbsp;
        <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> 
Penicuik Weather - http://weather.penicuik.org

Offline Mr.Meteo

  • Administrator
  • Hero Member
  • *****
  • Posts: 1120
    • http://www.meteostours.ca
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
Please, consider supporting this site 

Offline BestGear

  • Jr. Member
  • **
  • Posts: 32
    • Penicuik Weather
Re: Remove language selection?
« Reply #3 on: February 03, 2016, 03:12:19 PM »

Yes, you've found the right thing to remove.


Regards,
Jacques


Many thanks.... just thought its best to check with the Master!!   :-X
Penicuik Weather - http://weather.penicuik.org