Footer
-
How to remove Log in & Powered by WordPress? Please let me know.
-
You can remove login with CSS by hiding the class of that link with
display: none;“Powered by WordPress” is not in this theme. Please look at the functions.php if you need more control regarding these texts.
BTW you have to use a child theme if you want to preserve the changes after parent theme update.
I do not understand how to remove it! Please provide detailed instructions.
If I will remove this code from footer will it be the right decision?
<div id="site-info"> <?php /* Footer copyright widget area - use standard WordPress text widget with something like this: © 2013 Your Name. All rights reserved */ ?> <?php if ( is_active_sidebar( 'sidebar-7' ) ) : ?><ul id="copyright-widget"> <?php dynamic_sidebar( 'sidebar-7' ); ?> </ul> <span class="meta-separator">•</span> <?php endif; ?> <!--<a href="http://your-site.com" title="Web design & programing by your credentials" rel="designer">Web development by your credentials</a> <span class="meta-separator">•</span> --> <?php /* Tip61 - Discreet link to WordPress Admin panel in the footer */ ?> <span id="site-admin-link"><?php wp_register('', ''); ?> <?php wp_loginout(); ?></span> </div><!-- #site-info --> <div id="site-generator"> <?php do_action( 'tinyforge_credits' ); ?> <?php /* Tip31 - Icon webfont support implementation and examples */ ?> <a href="<?php echo esc_url( __( 'https://ww.wp.xz.cn/', 'tinyforge' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'tinyforge' ); ?>"><?php printf( __( 'Powered by %s', 'tinyforge' ), 'WordPress' ); ?><div class="icon-webfont el-icon-wordpress"></div></a> </div><!-- #site-generator --> </footer><!-- #colophon --> </div><!-- #page -->Hi, Mike,
this theme is created to learn how to code, in your case you would need to learn a little bit about CSS, I would suggest free lessons at:
http://www.codecademy.com/tracks/web
After this course you will feel in much better position to tackle WordPress templates. If this is not something you would like to undertake, you might need to chose some other theme, that has more built-in controls in Admin settings.
If you will remove that code from the parent theme, changes will be overwritten with the next theme update. So you need to upload and activate a child theme:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-child-theme-or-not
Then copy footer.php file from main theme to a child theme and remove these lines:
<span id="site-admin-link"><?php wp_register('', ''); ?> <?php wp_loginout(); ?></span>and
<?php do_action( 'tinyforge_credits' ); ?>Thank you for help.
Where I can download a child theme?
Download main theme:
https://ww.wp.xz.cn/themes/tiny-framework
Then unzip it and check Examples folder.
The topic ‘Footer’ is closed to new replies.
