Hello,
i would like to move the switcher from the the footer to the top by the search bar ?
Thanks a lot!
Hello,
i would like to move the switcher from the the footer to the top by the search bar ?
Thanks a lot!
Hi @RomanSt ,
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.
Hello,
Yes, sure. Here: www.stern-company.com
Hi @RomanSt ,
Follow the steps below to add a language selector to the Dawn Theme header.
Online store => Themes => Edit code => Find the theme.liquid file => Add the following code before the tag:
<script>
const pfInterval = setInterval(() => {
var headerSearch = document.querySelector('.header__search')
var form = document.querySelector('localization-form')
if(form) {
clearInterval(pfInterval)
var formClone = form.cloneNode(true);
headerSearch.append(formClone)
}
},100)
</script>
=> Save
Similar to the following image: