skio
Search…
Getting Started
Skio Theme Code
Plan Picker
Auto-login to Skio from Shopify Account
Volume Discount Script
Examples
Javascript / Webflow
Customize Customer Login
Extras
Subscription Tags
One-click Checkout / Buy Now
Redirect Old Customer Portals
Shopify API References
Liquid Docs
AJAX API Docs
Storefront GraphQL API Docs
Powered By
GitBook
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
file
ReCharge
if
(
window
.
location
.
pathname
.
startsWith
(
'/tools/recurring'
))
{
window
.
location
.
href
=
'/a/account/login'
;
}
Bold V2
if
(
window
.
location
.
pathname
.
startsWith
(
'/pages/my-subscriptions'
))
{
window
.
location
.
href
=
'/a/account/login'
;
}
Smartrr
if
(
window
.
location
.
pathname
.
startsWith
(
'/account'
))
{
window
.
location
.
href
=
'/a/account/login'
;
}
Extras - Previous
One-click Checkout / Buy Now
Next - Shopify API References
Liquid Docs
Last modified
2mo ago
Copy link
Outline
ReCharge
Bold V2
Smartrr