Usually, the powered by shopify logo is present in the footer section of your page. To remove this, you have to access the code for the footer page and remove the <div> that contains it. This can be done by accessing the footer.liquid file.

Here are detailed steps to remove Shopify logo-
- Login to your shopify admin panel.
- Go to online stores-> themes->actions->edit code
- Go to sections-> footer.liquid and click on the file.
- Search for “powered by” inside the code.
- Remove the following lines of code.
<div class="small--hide"> <small class="site-footer__copyright-content">© {{ 'now' | date: "%Y" }}, {{ shop.name | link_to: '/' }}</small> <small class="site-footer__copyright-content site-footer__copyright-content-powered-by">{{ powered_by_link }}</small> </div>
- Click on save
- Now the “powered by shopify” logo should have been deleted from your shopify store.
0 Comments