I cannot seem to figure out how to navigate to a Multicolumn section of my home page. I saw an article about setting up anchor blocks but that seems to be overkill. Is there a simple way that I am missing?
Hi @AaaronG ,
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution.
The store link is lavenderreflections.com. The password is “skayld”. I would like to have customers go to “Meditation” on the “Resources” dropdown and be taken to the “Meditation” section of the home page.
Hi @AaaronG
Please follow these steps:
-
Step 1: At Shopify Admin, select Online Store → Themes → Edit Code
-
Step 2: Open the file global.js, and add this code at the end of the file:
let listMenu = document.querySelectorAll("#HeaderMenu-MenuList-4 a.header__menu-item");
if(listMenu){
listMenu[6].href = "https://www.lavenderreflections.com/#shopify-section-template--17041804591398__855260c6-877d-416e-8623-1cb88475f763";
}
- Step 3: Save your code
I hope that it will work for you.