Changing copyright theme footer
-
I was wondering if someone could help to change the footer
I would like to remove the “© 2013 · Designed by Themes & Co” text
-
please check on footer.php file .
I hope you can get in this file..Are you using a child theme or a custom CSS plugin?
WOW you guys responded quickly ;-D
I have looked at the PHP file but cant see what to change??
this is what it looks like:
<?php /** * The template for displaying the footer. * * * @package Customizr * @since Customizr 3.0 */ do_action( '__before_footer' ); ?> <!-- FOOTER --> <footer id="footer" class="<?php echo tc__f('tc_footer_classes', '') ?>"> <?php do_action( '__footer' ); // hook of footer widget and colophon?> </footer> <?php wp_footer(); //do not remove, used by the theme and many plugins do_action( '__after_footer' ); ?> </body> <?php do_action( '__after_body' ); ?> </html>[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
What do I need to remove to get rid of the “Designed by Themes & co”?
Thanks so much ;-D
Which theme you are using ?
No, its not a child theme and haven’t used any custom CSS plugin.
Are you using a child theme?
The Customizr theme
Got it.
Here is your solution.
1. Go to wp-content/themes/customizr/parts.
2. Open class-footer-footer_main.php file.
3. Delete the lines from 137 to 160.
The code should be
/** * Footer Credits call back functions * Can be filtered using the $site_credits, $tc_credits parameters * * * @package Customizr * @since Customizr 3.0.6 */ function tc_colophon_center_block() { echo apply_filters( 'tc_credits_display', sprintf('<div class="%1$s">%2$s</div>', apply_filters( 'tc_colophon_center_block_class', 'span4 credits' ), sprintf( '<p> · © %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> · Designed by %4$s ·</p>', esc_attr( date( 'Y' ) ), esc_url( home_url() ), esc_attr(get_bloginfo()), '<a href="'.TC_WEBSITE.'">Themes & Co</a>' ) ) ); }You can delete the code from parent theme, but i would suggest you to use child theme.
Thanks so much!!! I haven’t tried it yet, but will get back to you if I still cant get it resolved.
You are a star, thanks so much!
No! Do not edit the theme itself. First create a child theme for your changes.
Yes, I will do that, thank you!
Check out the theme’s site too, especially the FAQ, where this is answered.
worked for me. Thanks @emadablog
gracias a sido de bastante ayuda. perfecto. thanks
This is how it should be done
The topic ‘Changing copyright theme footer’ is closed to new replies.
