I know this is really simple however, i am stuck !
I need to add the link to the creative website that has developed the store.
I have been able to change the code to replace the POWERED BY SHOPIFY. However, i cannot get it to link to the website.
Designed by House of Bettencourt
I just dont know where to put it in the coding
Hi @Chantelrudden
You can do that by replacing the below code in the footer.liquid file with your own link
<small>{{ powered_by_link }}</small>
wo
3
Approximate code location. Different theme will be different
2 Likes
Hello Chantelrudden,
Hope you are doing well,
To replace the “Powered by Shopify” text with your link in the footer, you’ll need to edit the theme’s code.
Here’s how you can do it:
-
Acess your Shopify admin
-
Navigate to theme editor
-
Edit Code
-
Locate the footer section( This could be footer.liquid or similar. It’s usually located in the “Sections” or “Snippets” folder.)
-
Replace the “Powered by Shopify” Code( It might look something like this)
{{ powered_by_link }}
- Replace it with the following code, which includes your link:
[Designed by House of Bettencourt](https://www.houseofbettencourt.ca)
Make sure to replace https://www.houseofbettencourt.ca with the actual URL of the website you want to link to.
Save Changes.
1 Like