YuraK Posted July 17, 2022 at 03:08 PM Share Posted July 17, 2022 at 03:08 PM Проблема возникла с поиском на сайте. Не работает поиск в шапке при попытке найти товар например по названию E ПГ открывается новая страница, как на скриншоте 2 где по той же фразе можно найти нужный товар. Подскажите в какую сторону копать, чтобы исправить этот баг? сразу хочу сказать новичок и хочу разобраться с этим, но мне бы напутствие) Спасибо заранее добрым людям) ссылка https://firmusdoors.ru 0 Quote Link to comment Share on other sites More sharing options...
AlexDW Posted July 17, 2022 at 04:09 PM Share Posted July 17, 2022 at 04:09 PM явно кто-то поигрался со скриптами найдите код 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; } 0 Quote модули для удобной работы с Opencart Link to comment Share on other sites More sharing options...
Recommended Posts
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.