Additional Set-Up and Troubleshooting

This guide will walk you through troubleshooting and extending Selling Fast App's Functionality.

Posted by Selling Fast Team on July 10, 2021

Trouble Shooting

Extending to Other Pages

Extending to Product Page

Who this guide is meant for

Unexpected Behaviour

Is the Selling Fast App beahving unexpectedly? Well we are here to help

The Selling Fast team aims to provide a seamless experience to Shopify merchants allowing them to modify their online store's appearance with a super easy set-up process that requires no coding.

However on some online stores the app may behave unexpectedly. An example of this unexpected behaviour is shown below. In this case the product's quantity sold is appearing on top of the image instead of below the product title.

Demo Image
Product quantity sold appearing on top of product image instead of below product title.

This issue may arise if your shop's theme is not currently supported by the Selling Fast App.

A Simple Fix

Go to your Online store -> Theme -> Select the Theme that you want to add code -> Action -> Edit Code.

In the snippets folder, open one of the following files:

  • product-card-grid.liquid
  • product-card.liquid
  • product-thumbnail.liquid
  • product-info.liquid

  • Each theme has different file name.
    In this file, find the following code:

    >{{ product.title }}<

    Copy the code below and paste under the code above

    <div data-sellingfastapp="{{ product.title }}"></div>

    Extending to Other Pages

    (Note: You need not follow the steps in this section if you have already followed those in the trouble shooting section)

    Merchants who want to show quantity sold on collections outside of the catalouge (eg. Home page)

    Go to your Online store -> Theme -> Select the Theme that you want to add code -> Action -> Edit Code.

    In the snippets folder, open one of the following files:

  • product-card-grid.liquid
  • product-card.liquid
  • product-thumbnail.liquid
  • product-info.liquid

  • Each theme has different file name.
    In this file, find the following code:

    >{{ product.title }}<

    Copy the code below and paste under the code above

    Extend to Individual Products Page

    Display quantity sold on individual product pages

    In the sections folder, open one of the following files:

  • product-template.liquid
  • product-meta.liquid
  • product-info.liquid

  • The file name may vary from theme to theme.
    In this file, find the following code snippet:

    >{{ product.title }}<

    Copy the code below and paste under the code above

    <div data-sellingfastapp="{{ product.title }}"></div>