Articles

How can we help?

Learn about the CrazyLoad App.

Removing the Crazyload Snippets manually

Technical Information

Removing the Crazyload Snippets manually

In this article, we'll guide you on removing the CrazyLoad snippets manually through a step-by-step guide.

Last updated on 26 Sept, 2023

Step 1.

Head to your theme files and explore the following two folders:

./assets/

./snippets/

in both these folders, delete each of the files with the prefix

____clspeedapp

Step 2.

Head to your theme.liquid file, and remove 

2.1 - At the top of the file remove the following 4 lines:

&lt;!-- crazy-load LOAD CONFIG --&gt;<br>{% include '__clspeedapp-theme-config' %}<br><br>&lt;!-- crazy-load BEGIN CAPTURE --&gt;<br>{%- capture __clspeedapp-html -%}

2.2 - Right under <head> remove the following block:

&lt;!-- crazy-load BEGIN HEAD TOP --&gt;<br>{% include '__clspeedapp-theme-preload' %}<br>{% include '__clspeedapp-html-css' %}<br>{% include '__clspeedapp-html-css-critical' %}<br><br>{% include '__clspeedapp-js-init' %}<br>{% include '__clspeedapp-js-functions' %}<br><br>{%- unless is_admin_interface -%}<br>{% include '__clspeedapp-js-frontend' %}<br>{%- endunless -%}<br><br>{%- unless is_admin_interface -%}<br>{% include '__clspeedapp-js-scripts' %}<br>{%- endunless -%}<br>&lt;!-- crazy-load END HEAD TOP --&gt;

2.3 - Right before the closing </body> tag, remove this block:

&lt;!-- crazy-load BEGIN BODY --&gt;<br>{% include '__clspeedapp-html-fonts' %}<br>&lt;!-- crazy-load END BODY --&gt;

2.4 - and finally, right after the closing </html> tag, remove this block:

&lt;!-- crazy-load END CAPTURE --&gt;<br>{%- endcapture -%}<br><br>&lt;!-- crazy-load LOAD HTML --&gt;<br>{% include '__clspeedapp-theme-html' %}

That's it! You've successfully remove all the CrazyLoad code manually from your theme.

 

Was this page helpful?