javascript 如何让语言选择器在Shopify上的页眉而不是页脚上工作?

ctzwtxfj  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(101)

我一直在尝试将语言选择器从页脚移动到页眉。我快到了,但它仍然不起作用。我尝试在theme.liquid上使用js snippet,这使得按钮显示出来,但功能不起作用。有人能帮助我解决这个问题吗?提前感谢!
URL为https://shtaim.store/
enter image description here
我使用了这段代码,并将其插入标签内。
setList(()=> { let elementToInsertBefore = document. queryList(“.mobile-icons .header__link.action-area__link”)let newElement = document. queryElement(“.localization.footer-menu__disclosure.is-hidden-medium.is-hidden-mobile-only .selectors-form__item.selectors-form__locale .disclosure.disclosure--i18n. sources-text-style-socket”); elementToInsertBefore.parentNode.insertBefore(newElement,elementToInsertBefore); },1000)
按钮在那里,但不工作.我错过了什么吗?

2ul0zpep

2ul0zpep1#

只要应用这个简单的css使选择器进入页面的左上角

.disclosure--i18n {
    position: absolute;
    display: block;
    top: 96px;
    left: 113px;
}
.disclosure__list-wrap {
    transform: translate(18px, 142px);
}

字符串

相关问题