Jump to content

не работает поиск в шапке


YuraK
 Share

Recommended Posts

Проблема возникла с поиском на сайте.

Не работает поиск в шапке при попытке найти товар например по названию E ПГ

открывается новая страница, как на скриншоте 2 где по той же фразе можно найти нужный товар.

Подскажите в какую сторону копать, чтобы исправить этот баг?

сразу хочу сказать новичок и хочу разобраться с этим, но мне бы напутствие)

Спасибо заранее добрым людям)

ссылка https://firmusdoors.ru

Снимок экрана 2022-07-17 в 18.05.34.png

Снимок экрана 2022-07-17 в 18.05.53.png

Link to comment
Share on other sites

явно кто-то поигрался со скриптами

найдите код

function() {
  var url = 'https://firmusdoors.ru/index.php?route=product/search&search=%search%';
  var value = $('header #search input[name=\'search\']').val();
  if (value) {
    url = url.replace('%search%', encodeURIComponent(encodeURIComponent(encodeURIComponent(value))));
  } else {
    url = 'https://firmusdoors.ru/index.php?route=product/search';
  }
  location = url;
}

и замените его на

function() {
  var url = $('base').attr('href') + 'index.php?route=product/search';
  var value = $('header #search input[name=\'search\']').val();
  if (value) {
    url += '&search=' + encodeURIComponent(value);
  }
  location = url;
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...