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:
<!-- crazy-load LOAD CONFIG --><br>{% include '__clspeedapp-theme-config' %}<br><br><!-- crazy-load BEGIN CAPTURE --><br>{%- capture __clspeedapp-html -%}2.2 - Right under <head> remove the following block:
<!-- crazy-load BEGIN HEAD TOP --><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><!-- crazy-load END HEAD TOP -->2.3 - Right before the closing </body> tag, remove this block:
<!-- crazy-load BEGIN BODY --><br>{% include '__clspeedapp-html-fonts' %}<br><!-- crazy-load END BODY -->2.4 - and finally, right after the closing </html> tag, remove this block:
<!-- crazy-load END CAPTURE --><br>{%- endcapture -%}<br><br><!-- crazy-load LOAD HTML --><br>{% include '__clspeedapp-theme-html' %}That's it! You've successfully remove all the CrazyLoad code manually from your theme.