How To Add Custom Header In Shopify 2024 | Step by Step Easy (2024)

preview_player
Показать описание
How To Add Custom Header In Shopify 2024 | Step by Step Easy (2024)

In this video I show you How To Add Custom Header In Shopify 2024. It is very easy and anyone can do it by following these simple steps.

If this tutorial helped you out please consider leaving a like & commenting down below if this works! Thank you so much!

#TheSocialGuide
Рекомендации по теме
Комментарии
Автор

For those who are looking for the code:
<script>

let items =
items.forEach(item => {
item.setAttribute("open", true);
item.querySelector("ul").addEventListener("mouseleave", () => {
item.removeAttribute("open");
});
item.addEventListener("mouseleave", () => {
item.removeAttribute("open");
});
});
});
</script>

drippydidong
Автор

Hey, can you please make a complete video over `how to edit and customise the whole header section through liquid including schema's every dynamic things`?

dawoodidrees
Автор

I don’t have “render” when I scroll through header.liquid. What’s wrong?

kennaevans
Автор

Incomplete content. Where is the code?

homejet
Автор

Is there a way to change the header on another page without changing the homepage header?

lovesteady
Автор

how do i change the headings? i want to change "home" and "contact" to say something else

namedcollective
Автор

I hope I wrote it right
<script>
let items =
items.forEach(item => {
item.addEventListener("mouseover", () => {
item.setAttribute("open", ture);
item.querySelector("ul").addEventListener("mouseleave", () => {
item.removeAttribute("open");
});
item.addEventListener("mouseleave", () => {
item.removeAttribute("open");
});
});

});
</script>

_StoicMindset_