We are getting a random text (Copy) above our header. I’m seeing it when viewing page source, however I cannot pinpoint it when searching for the keyword in theme.liquid. Our website is shoplacera.com.
Some guidance would be greatly appreciated.
Thank you!
1 Like
Hi @Laceranyc
The good way to resolve this is to remove the word Copy in your theme.liquid under the Layout folder.
- From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
- Go to Layout folder and open the theme.liquid file
- Find the word Copy after the <body, and delete it
Other way but not a good way is to hide it.
- From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
- Go to Asset folder and open the styles.css file
- At very end of the code, add the code below
body.template-index.swatch-method-standard.swatch-style-listed.cc-animate-enabled {
margin-top: -26px;
}
1 Like
Tried the 2nd suggestion and it looks like it fixed it. Thank you so much!
May have spoken too soon
It looks like it only fixed it on the homepage area. I’m still seeing it everywhere else.
I also tried looking for the word in theme.liquid file but it’s not showing there.
Does anyone else have a suggestion? Searching the word “Copy” in theme.liquid yielded no results.
The 2nd suggestion fixed the main page but you can still see the random text above the header everywhere else.