Stores on a paid plan can link or redirect a page in their shop to another URL (like a blog, for example), all without having to modify built-in theme code. Here’s how!
Redirect a link in your shop
- Head to Account > Customize design > Pages.
- Click the + button to add a new page. Give the page a name.
- Click the HTML icon, and replace the current code with the following - be sure to change the two example URLs to where you’d like to redirect to:
<html>
<head>
{{ head_content }}
<link rel="canonical" href="http://example.com/your-page/" />
<meta http-equiv=refresh content="0; url=http://example.com/your-page/" />
<meta name="robots" content="noindex,follow" />
<meta http-equiv="cache-control" content="no-cache" />
</head>
<body>
</body>
</html>
Uncheck the “Use my store’s layout” box at the bottom, then click Done and Save at the top.
That’s it! Check out the new link in your shop. 🔗