Dear community,
I’m using Pipeline, and on the footer of my website it seems like the “powered by Shopify” is not editable on the edit mode. Could someone be able to give me a code that remove this please ?
My website is “Carmelya.cc”
Many thanks!
A user running the Pipeline theme wants to remove the “Powered by Shopify” text from their website footer, which isn’t editable through the standard theme editor.
Solutions Provided:
Multiple community members offered CSS code snippets to hide this element, with slight variations:
.subfooter__copyright with display: none to either the theme’s base.css file or Custom CSS section in theme settings.subfooter__item--copyright or more specific targeting using attribute selectors like a[href*="shopify"]Key Details:
Dear community,
I’m using Pipeline, and on the footer of my website it seems like the “powered by Shopify” is not editable on the edit mode. Could someone be able to give me a code that remove this please ?
My website is “Carmelya.cc”
Many thanks!
Hi @AA226
let add this custom css code to your theme settings:
.subfooter__copyright {
display: none;
}
Hello @AA226
.subfooter__copyright {
display: none;
}
Hi @AA226
Please add this code to Custom CSS in Sales channels > Online Store > Themes > Customize > Theme settings
.subfooter__copyright:has(a[href="https://www.shopify.com?utm_campaign=poweredby&utm_medium=shopify&utm_source=onlinestore"]) { display: none !important; }
Please add the following code at the bottom of your css file.
.subfooter__copyright a[href*="shopify"] {
display: none;
}
Hope this helps!
Hi @AA226 , Please follow these steps
.subfooter__item.subfooter__item--copyright .subfooter__copyright{
display:none !important;
}