Editing the footer
-
I want to change the text in the footer area but can’t find where to change it (it is not in a widget). Anyone who knows where i change the text?
My website is http://www.swedenkickboxing.se
-
It may be in one of your theme’s template files, most likely footer.php.
I’ve looked there but couldn’t find it. Maybe you can? The footer.php looks like:
[ Moderator note: please wrap code in backticks or use the code button. ]
<?php /** * The template used to display the footer * * Contains the closing of the id=main div and all content * after. Calls sidebar-footer.php for bottom widgets * */ ?> </div><!-- #main --> <?php if (weaver_getopt_checked('ttw_footer_last')) echo("</div><!-- #wrapper -->\n"); ?> <?php if (!weaver_is_checked_page_opt('ttw-hide-footer')) { weaver_put_area('prefooter'); if (!weaver_getopt('ttw_hide_footer')) { ?> <div id="footer"> <div id="colophon"> <?php get_sidebar( 'footer' ); echo(do_shortcode(weaver_getopt('ttw_footer_opts'))); /* here is where the footer options get inserted */ do_action('wvrx_extended_footer'); /* anything in the extended footer */ do_action('wvrx_plus_footer'); /* after ttw_footer_opts added */ $date = getdate(); $year = $date['year']; ?> <table id='ttw_ftable'><tr> <td id='ttw_ftdl'><div id="site-info"> <?php $cp = weaver_getopt('ttw_copyright'); if (strlen($cp) > 0) { echo(do_shortcode($cp) . '</div></td>'); } else { ?> © <?php echo($year); ?> - <a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> </div></td> <?php } if (! weaver_getopt('ttw_hide_poweredby')) { ?> <td id='ttw_ftdr'><div id="site-generator"> <?php do_action('weaver_credits' ); ?> <a href="http://wordpress.org/">" rel="generator"><?php printf( __( 'Proudly powered by %s.', WEAVER_TRANS ), 'WordPress' ); ?></a> <?php echo(WEAVER_THEMENAME); ?> by WPWeaver.info </div></td> <?php } ?> </tr></table> </div><!-- #colophon --> </div><!-- #footer --> <?php } weaver_put_area('postfooter'); } /* end of ttw-hide-footer */ ?> <?php if (!weaver_getopt_checked('ttw_footer_last')) echo("</div><!-- #wrapper -->\n"); ?> <?php echo(do_shortcode(weaver_getopt('ttw_end_opts')) ."\n"); /* and this is the end options insertion */ wp_footer(); ?> </body> </html>It looks like you’re using a weaver based theme. Look in your Weaver admin options, find the area that deals with the footer. There is a place to disable the footer text.
Yes there is but I want to change the text in the footer, not delete it. And there is no text field there. 🙁
If you’re on Weaver (rather than Weaver II):
Appearance –> Weaver Admin –> Adv Options -> Site Options
Yes, there it is! Thanks!!! 🙂
The topic ‘Editing the footer’ is closed to new replies.