Make Shopify FAQ page clickable with Anchor text

Let’s spruce up that FAQ page! Whether you’re on Shopify, Squarespace, Wix or Wordpress there’s always little tweaks that can provide a better experience for your customer. Here’s a quick and simple way to make your FAQ page easier to navigate using HTML anchor links.

  1. Assign our questions with an id that we’ll reference.

    1. <a id="Q1">How do I know when my product has shipped?</a>

      1. We’re assigning the id Q1 to that question.

  2. Copy all the questions and place at the top of the page. Now we’re going to add the link to these. When someone clicks on “How do I know when my product has shipped?” they’re going to be taken to Q1 we assigned in step 1.

    1. <a href="#Q1">How do I know when my product has shipped?</a>

  3. Do the same for each question.

    1. <a href=”#Q2”>How can I change my shipping address?</a>

Here’s the TikTok Video

Reference: https://www.rapidtables.com/web/html/link/html-anchor-link.html#example

https://www.w3schools.com/html/html_links.asp

https://www.w3schools.com/tags/att_a_href.asp