remove login from top left of news2

March 2014 WordPress Theme
GK User
Fri May 08, 2015 1:30 pm
hi. i want to remove login button from top left of the news2 theme. this is so because when i page down, then the menu floats down with page. then, my logo - text logo - becomes double lined and half of it appears below menu. can you please guide me what php code to remove from theme files to remove logo?
regards
User avatar
Junior Boarder

GK User
Fri May 08, 2015 5:17 pm
i deleted code from header.php in news2/layouts/header.php and got the desired result. site working ok. plz close the topic.

<?php if(get_option($gk_tpl->name . '_login_link', 'Y') == 'Y') : ?>
<?php if(!is_user_logged_in()) : ?>
<a href="<?php echo get_option($gk_tpl->name . '_login_url', 'wp-login.php?action=login'); ?>" id="gk-login"><?php _e('Log In', GKTPLNAME); ?></a>
<?php else : ?>
<a href="<?php echo wp_logout_url(); ?>" id="gk-login"><?php _e('Logout', GKTPLNAME) ?></a>
<?php endif; ?>
<?php endif; ?>
User avatar
Junior Boarder


cron