Community Forums › Forums › Design Tips and Tricks › Remove footer line with return to top and copyright – Balance
Tagged: balance theme, remove copyright, remove footer
This topic contains 5 replies, has 4 voices, and was last updated by mkconway 3 months ago.
-
AuthorPosts
-
December 19, 2012 at 10:08 am #6185
Is there a simple way of removing the line:
RETURN TO TOP OF PAGE COPYRIGHT © 2012 · BALANCE THEME ON GENESIS FRAMEWORK · WORDPRESS · LOG IN
from the Balance theme?
My blog is http://www.spanish-bites.com/
Maria
December 19, 2012 at 10:13 am #6186Hi – take a look here > http://my.studiopress.com/snippets/footer/#custom-footer
Let the water under the sky be gathered to one place, and let dry ground appear. Genesis 1:9
December 19, 2012 at 10:50 am #6198You can use the Genesis Simple Edits plugin to edit the footer or add this in your functions.php file to remove the footer completely.
//***Remove The Footer**/ remove_action('genesis_footer', 'genesis_footer_markup_open', 5); remove_action('genesis_footer', 'genesis_do_footer'); remove_action('genesis_footer', 'genesis_footer_markup_close', 15);
Bourn Creative | bourncreative.com | Twitter
-
This reply was modified 5 months ago by
Brian Bourn.
-
This reply was modified 5 months ago by
Brian Bourn.
December 19, 2012 at 10:50 am #6200Yes, I’ve come across that in many posts, but you need to remove the <p> … </p>:
/** Customize the entire footer */
remove_action('genesis_footer','genesis_do_footer');
add_action('genesis_footer','custom_footer');
functioncustom_footer() {
?>
<p>© Copyright 2012 <a href="http://mydomain.com/">My Domain</a> · All Rights Reserved · Powered by <a href="http://wordpress.org/">WordPress</a> · <a href="http://mydomain.com/wp-admin">Admin</a></p>
<?php
}What you need to put on your functions.php is:
/** Customize the entire footer */
remove_action('genesis_footer','genesis_do_footer');
add_action('genesis_footer','custom_footer');
functioncustom_footer() {
?>
<?php
}I’ve posted this in case others want to remove that line too.
December 20, 2012 at 6:45 am #6368Brian, thanks. The Simple Edits plugin did the trick, and I was also able to remove the post date. I’ve now restored the functions.php file to the original.
February 21, 2013 at 5:01 am #21916I wanted to do the same thing (remove the log in link) and was having trouble with the code (my fault). Didn’t know the Simple Edits plug in existed, but it worked like a charm. Thanks!
-
This reply was modified 5 months ago by
-
AuthorPosts
You must be logged in to reply to this topic.