How can I remove code from the bottom of a website?

Topic summary

A user seeks help removing unwanted code appearing at the bottom of their Shopify website.

Solutions provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Check the theme.liquid file in the Layout folder
  • Use Ctrl+F to search for the specific code snippet visible at the bottom
  • Delete the identified code line that appears after the main content markup
  • Alternatively, check the footer.liquid file for the problematic code

Resolution:
The original poster confirmed the issue was resolved, thanking the community for assistance. The discussion demonstrates a typical Shopify theme customization workflow for removing unwanted footer elements through direct code editing.

Summarized with AI on November 15. AI used: claude-sonnet-4-5-20250929.

Hi I am trying to figure out how to remove the code that is at the bottom of the website. Any idea on how to do this? Thank you! The website is: https://www.thetinygreenhouse.com/

1 Like

Hi @aosttg

Try this.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • Go to Layout folder, and open the theme.liquid.
  • Find the code below by clicking Control + F
.main-content:after​
  • Then delete the line of code you see.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

@aosttg - if it is at the very bottom then please check theme.liquid file or footer. liquid file

once you find it, please add

before this code and after this code

Got it, thank you!

1 Like