Redirect Old Customer Portals
Add the appropriate block of code inside a
<script>
tag at the top of the <head>
tag in the theme.liquid
fileif (window.location.pathname.startsWith('/tools/recurring')) {
window.location.href = '/a/account/login';
}
if (window.location.pathname.startsWith('/pages/my-subscriptions')) {
window.location.href = '/a/account/login';
}
if (window.location.pathname.startsWith('/account')) {
window.location.href = '/a/account/login';
}