Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Переключатель языков - Opencart 2


aeronaut
 Share

Recommended Posts

Доброго времени суток.

Необходимо вместо стандартных флагов, реализовать выпадающий список со списком доступных языков (текст без картинок)

Для решения правил файл language.tpl

Визуально все ок, при этом, если нажать на язык, страница просто обновляется без переключения на нужный язык. 

Где ошибка?)

<?php if (count($languages) > 1) { ?>
<div class="pull-left">
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="language">
  <div class="btn-group">
  <button type="button" data-toggle="dropdown" class="dropdown-toggle">Выберите язык<span class="caret"></span></button>  
    <ul class="dropdown-menu">
      <?php foreach ($languages as $language) { ?>
      <li><a href="<?php echo $language['code']; ?>"> <?php echo $language['name']; ?></a></li>
      <?php } ?>
    </ul></div>
  </div>
  <input type="hidden" name="code" value="" />
  <input type="hidden" name="redirect" value="<?php echo $redirect; ?>" />
</form>

<?php } ?>

 

Link to comment
Share on other sites


11 minutes ago, halfhope said:

а как выглядело до правок?

<?php if (count($languages) > 1) { ?>
<div class="pull-left">
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="language">
  <div class="btn-group">
    <button class="btn btn-link">
    <span class="hidden-xs hidden-sm hidden-md"><?php echo $text_language; ?>&nbsp;:</span>
	<?php foreach ($languages as $language) { ?>
    <?php if ($language['code'] == $code) { ?>
    <img src="image/flags/<?php echo $language['image']; ?>" alt="<?php echo $language['name']; ?>" title="<?php echo $language['name']; ?>">
    <?php } ?>
    <?php } ?>
    <?php /*?><i class="fa fa-caret-down"></i><?php */?></button>
    <ul class="language-menu">
      <?php foreach ($languages as $language) { ?>
      <li><a href="<?php echo $language['code']; ?>"><img src="image/flags/<?php echo $language['image']; ?>" alt="<?php echo $language['name']; ?>" title="<?php echo $language['name']; ?>" /> <?php echo $language['name']; ?></a></li>
      <?php } ?>
    </ul>
  </div>
  <input type="hidden" name="code" value="" />
  <input type="hidden" name="redirect" value="<?php echo $redirect; ?>" />
</form>
</div>
<?php } ?>

 

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.