Is it possible to hide some parts of the website from search engines?

Topic summary

Goal: hide only the footer address from search engines so the site doesn’t appear when someone searches the physical address. Store uses the Dawn theme.

Context: The author tried a Liquid conditional snippet but cannot insert it into the footer via the theme editor.

Clarification: Respondent confirmed the intent is to prevent indexing of the footer address, not the whole site.

Suggested approach (page-level):

  • Add a meta noindex tag via theme.liquid for specific pages linked in the footer.
  • Steps: Online Store > Themes > Edit code > Layout/theme.liquid, insert a noindex tag before , targeting pages by their handle (found under Online Store > Pages and checking the URL).

Alternative: Use a Shopify app (e.g., Noindexly) to add noindex without coding; collect the footer links and apply noindex using the app’s tooling.

Status: No confirmation that element-level (footer-only) de-indexing is possible; proposed solutions focus on adding noindex to specific pages. No final resolution reported.

Summarized with AI on December 16. AI used: gpt-5.

Hey Lisa, in that case I recommend adding a noindex tag in each page of your footer

you can do it directly with liquid :

  1. Log in to your Shopify admin panel.
  2. Navigate to “Online Store” > “Themes”.
  3. Find your current theme and click “Actions” > “Edit code”.
  4. In the left sidebar, locate and click on the “theme.liquid” file under the “Layout” section.
  5. Find the closing tag in the theme.liquid file.
  6. Just before the tag, add the noindex code
  7. Click “Save” to apply the changes.

Finding Your Page Handle

To find the handle of the page you want to noindex:

  1. Go to “Online Store” > “Pages” in your Shopify admin.
  2. Click on the page you want to noindex.
  3. Look at the URL in your browser. The last part of the URL after “/pages/” is your page handle

Simple solution

You can use a Shopify app like Noindexly to create noindex tag without having to code

Extract the list of links in your footer and then apply a noindex tag to those links.