Installation Page

If you have multiple themes are installed on your website and wanted to check the app and explore the features without touching your live theme, install the app in your preferred theme automatically or manually.

Automatic installation

– Select the theme you want to install the app from the dropdown select option.
– Click on the Install Snippet button to add the app code automatically.
ROS - Auto Install

Manually Installation

Steps to install the snipped code manually.

  1. Go to the Online Store menu from shopify admin.
  2. Click on the Actions button and select the Edit Code option
  3. Follow the below steps and find the correct file and position to add the snippet

1. Add the below code to display the selling plan selector on the product page
To display the selling plan selector, please add the below code in sections/product-template.liquid after <select name="id" ...>...</select>
{% render 'ROS-subscription-product', product: product %}

ROS - Code - Product Page

2. Add the below code to display the selling plan label on the cart page.

To display the selling plan label, please add the below code in sections/cart-template.liquid after {% assign property_size = ... %} tag over.
{% render 'ROS-subscription-cart', item: item %}

ROS - Code - Cart Page

3. Add the below code to show the customer portal link to the account page.

To display the customer portal link, please add the below code in templates/customers/account.liquid at any desired location.
{% render 'ROS-subscription-account' %}

ROS - Install Code Customer