Why is this weird line of words showing on the bottom of a page on my website?

At the bottom of my ‘contact us’ page, this line is showing (Liquid error (snippets/page-template-blocks line 12): Could not find asset snippets/page-block-contact-form.liquid) and I can’t figure out how to get rid of it. Please help.

Why is it there?

Thank you,

Zo

https://www.okandco.com.au/pages/contact-us

Hi @ZBK

Could you take a screenshot of line 12 in your Online store > Themes > Edit code > Snippets > page-template-blocks.liquid file

Hi Dan,

Thanks for your message. It won’t allow me to attach the screen shot, but line 12 of that file is: {% include ‘page-block-contact-form’ %}

The whole file’s code is:

{% for block in section.blocks %}
{% case block.type %}

{% when ‘contact-form’ %}
{% include ‘page-block-contact-form’ %}

{% when ‘custom-html’ %}
{% include ‘page-block-custom-html’ %}

{% when ‘background-image-text’ %}
{% include ‘page-block-background-image-text’ %}

{% when ‘hero-video’ %}
{% include ‘page-block-hero-video’ %}

{% when ‘image-hero’ %}
{% include ‘page-block-image-hero’ %}

{% when ‘image-row’ %}
{% include ‘page-block-image-row’ %}

{% when ‘rich-text’%}
{% include ‘page-block-rich-text’ %}

{% when ‘text-and-image’ %}
{% include ‘page-block-text-and-image’ %}

{% when ‘text-columns’ %}
{% include ‘page-block-text-columns’ %}

Thanks for your help.

Zo

{% when ‘testimonials’ %}
{% include ‘page-block-testimonials’ %}

{% when ‘map’ %}
{% include ‘page-block-map’ %}

{% when ‘featured-collection’ %}
{% include ‘page-block-featured-collection’ %}

{% when ‘fading-images’ %}
{% include ‘page-block-fading-images’ %}

{% endcase %}

{% endfor %}

Hi @ZBK

So please check on Snippets if page-block-contact-form.liquid is exist. If it does not then you can remove those lines of code to solve the issue

{% when 'contact-form' %}
{% include 'page-block-contact-form' %}

Thank you so much for your help, Dan. This worked perfectly :slightly_smiling_face:

Happy I could help!