Search Engine Crawling

By default, the Inveterate Landing Page is set to be crawled and indexed by Google and other search engines.

There will be situations where you may want to prevent Google from indexing your Landing Page, follow the instructions below to block your Landing Page from Google search results.

  1. Navigate to your theme in Shopify

  2. Open the theme code editor

  3. Find your Theme.Liquid file

  4. Insert the code below anywhere between your <head> and </head> tags

{% if request.path == '/community/membership' %}
  <meta name="robots" content="noindex,nofollow">
{% endif %}

Last updated