How to Edit/Remove the "Designed by" at footer?

pouria

Member
Hi,

I found it kind of hard to remove or edit the Designed by part at the Woocommerce themes while it's very easy to do so in Normal themes!
can anyone help me what should i do??

Thanks
 

Direct Webstore

Well-Known Member
It depends on the theme. They're all different. Sometimes, if you can't edit, you can just hide the text with CSS with display: none;
 

Direct Webstore

Well-Known Member
No. You have to (in Chrome) right click the text and click "Inspect". A console will open on the right. Look for code about the footer copyright then copy the code and use the display: none

I can't really explain any clearer as all themes are different.

Example...

It could be something like this ...

.footer-content, .copyright-content {
margin: 0 auto;
max-width: 1576px;
}


Change it to this ...

.footer-content, .copyright-content {
display: none;
}


Then paste it into Appearance/Customize/Additional CSS and save.
 
Top