How to remove proudly presents by wordpress
-
Hi There
is it possible in somehow to remove the the Proudly Presents by WordPress at the footer of my theme, the theme i am using is Edin
https://wordpress.org/themes/edinbest regards
Matthias
-
Hello makr1909,
Inser this css code(it will also hide the Theme: Edin by WordPress.com.) into your theme’s style.css:
.site-info { display: none; }Let me know if you still need assistance. 🙂
Best Regards,
CalvinThe correct way to do this, is to create a child theme:
http://codex.wordpress.org/Child_ThemesAnd modify the footer.php to remove the credit links in the file rather then just hiding it with CSS (the content still will show in the source code if you hide with CSS, and will still be available to screen readers and search engines for example), creating a child theme for your modifications will mean you won’t have any worries if you need to update your parent theme.
If you were to follow Calvin suggestion, I would not edit the themes style.css
Instead, you might find using a custom CSS plugin a far simpler solution. If you are using the JetPack Plugin it has a custom CSS module alternatively you can look at https://wordpress.org/plugins/simple-custom-css/
Apart from making it easy to make CSS changes in your admin area, it will also mean that if you update your theme if a new version is released, you won’t lose your changes.
Thank you very much that solved my issue 🙂
Hello guys,
Thank you very much that solved my issue 🙂
Good to hear that it is now all good 🙂
@tim Nash
Thanks for the help here. 🙂 I should have suggested to use child themes right from the start.
Best Regards,
Calvin
The topic ‘How to remove proudly presents by wordpress’ is closed to new replies.