Docs

Adding the Manage subscriptions link

Adding the Manage subscriptions link

Shopify theme editor - Add manage subscriptions link

Once a client subscribes to any of your products, they may want to edit their active subscription from time to time. To give them easier access, you can add the “Manage subscriptions” link to the customer login screen (or the customer account, or both). Once added, your subscribers will be able to navigate to the Customer Portal directly from these places and manage their subscriptions as needed.

Instructions for Shopify 2.0 themes

If you’re using a 2.0 theme, you can simply add the link to your store theme in the Shopify Admin.

  1. Go to Shopify Admin > Online Store and click “Customize”
  2. Open the Customer login page template (under Classic customer accounts)
  3. Scroll to where you would like the link to be added, then click on the “on the “Add section” button that appears
  4. Select “Juo Manage Subscription Link” from the dropdown menu
  5. Remember to save the template.

If you’d like the “Manage Subscriptions” link to appear in the customer account in your store, follow the same steps for the Customer account page template.

Instructions for older themes

If you’re using an older theme, you can add the link by editing the liquid files. This requires some knowledge about how Shopify templates’ code works, so if you have any issues, just reach out to us.

  1. Go to Shopify Admin > Online Store
  2. Click the actions menu and choose “Edit code”
Shopify Admin - Code editing
Click "Edit code" next to the theme you want to edit
  1. Find the main-login.liquid file under Sections — depending on the theme version, it can also appear under Templates/login.liquid.
  2. In the liquid file, copy and paste the snippet below where you would like the “Manage Subscriptions” link to appear.
Code snippet to add to the Login page
<a href="{{ routes.root_url }}apps/juo">{{ "Manage Subscriptions" | t }}</a>
Login.liquid file - Juo snippet
Add the code snipped to the login.liquid file
  1. Once the snippet is added, hit “Save” to apply the changes.
  2. If you want the “Manage subscriptions” link to appear on other pages, like the client account, repeat the steps 3-5 for the customers/account.liquid file.