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;
}