Removed bottom link of footer "Website template by Shopify" turbo theme

Topic summary

A user wants to remove or replace the “Website template by Shopify” credit link in their Turbo theme footer.

Initial Solutions Offered:

  • Check theme customization settings for a built-in option to hide/modify the footer credit
  • Use CSS to hide the link by adding p.credits a:last-of-type { display: none; } to the styles.css file
  • Alternative method: Insert CSS code in theme.liquid file before the </body> tag targeting the Shopify credit link URL

User’s Follow-up Request:
Wants to replace the credit with custom text: “Designed by House of Bettencourt”

Current Status:
One responder noted that replacing the text is feasible but would require store access to identify the exact file location. The discussion remains open with no complete solution provided for the custom replacement text.

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

Hello @Chantelrudden ,

There should be a settings option in the footer section in theme customization to hide or change this message. If you can’t find it then you can hide it using CSS.
Go to the themes section, select Edit code, and search for the file named “styles.css”. Once you’ve found it, paste the following code at the bottom.

p.credits a:last-of-type {
    display: none;
}