Liquid error (layout/theme line 1017): Could not find asset snippets/gts.liquid

We had this issue just pop up at the bottom of our store page. Any help would be greatly appreciated.

1 Like

Always backup themes before changing files even if doing a “fix”

Look in your theme files, theme.liquid around line 1017 for code that looks like {% include ‘gts’ %} or {% render ‘gts’ %}.

Or try to rollback the theme file https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/edit-theme-code#roll-back

If you need if debugged, found and fix contact me directly for services.
Please provide context, examples: store url, theme name, post url(s) , or any further detail.
Contact Info in signature.

Hi @Joe_Hanni ,

You have a snippet that does not exist.

If you some coding, please follow the instructions below.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code

  2. Go to Layout folder and open the theme.liquid

  3. Using the Shopify search feature, search for “gts”

  4. If you found the code, delete the line of code. It might be either the code below

{% render "gts" %}
{% include "gts" %}

If you don’t, just follow the steps below.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code

  2. Go to Snippet folder and create a new snippet

  3. Name it “gts”, please make sure to follow the name.

  4. Click SAVE

1 Like