Hi @shakz
Would you be able to share a link to the affected page on your store? We will need to be able to inspect the code to help you isolate where it could be coming from.
Generally issues like this are created through a customization of the code for that area of the theme or by an app that un/installed incorrectly or that left some broken code behind.
If you have the password page up on your store, please update the password to something simple we can use while troubleshooting and you can replace it once we are done. Let me know if you need help with that.
The link to the store is softradiance.com
Try to search for " \n" in your theme file with ctrl/cmd + f and if you find anything, delete it or share a screenshot if you’re not sure if it’ll break something
i checked theme.js.liquid and theme.scss.liquid and i didn’t find anything.
Thank you for the store link @shakz !
I had a look and it appears that there is a script installed on your store that is wrapped in this n/n+ text:
\n" +
"\n" +
"\n" +
"
\n" +
"\n" +
" \n" +
"\n
I would recommend installing this extension into the Chrome web browser, which allows you to search your entire theme file for code pieces: Shopify Theme Search by Bold - Chrome Web Store. Once installed, a small search box appears in the upper right of the theme code editor in your admin. The first time you search will index your theme file, and then the second time you search it will start looking for pieces of that code. I would try either a partial string of the n+ code or a piece of the script I highlighted above.
Once you find the related pieces, if you are unsure where it came from please share a screenshot of where you are seeing the code in your theme file so we can help you assess. You can also duplicate your current theme so that you can try removing the code yourself and have a recovery file if it breaks the theme in any way.
Remove all of the \n” + “
It’s in the screenshot you shared previously.
{% capture head_content %}{{content_for_header}}{% endcapture %}
{% if header_content contains 'cjpodflag' %}
{% if template contains 'product' %}
{% endif %}
{% endif %}
You should be able to replace the piece of code in your screenshot with this ˆ
You are a legend man, it worked.



