What plugin you use for login topbar? in your web

7.32K viewsWordPress
0

What plugin you use for login topbar? in your web. https://gyazo.com/3290d9cc131cdad27ebde2e454dd684e

Thanks.

Attachments

login.jpg
2

Hi @chuki

Sorry, this ability is a options of AnswerBox theme and isn’t a plugin.

You can use several plugins that shared on WordPress.org instead of this  feature.

But for adding a simple login-logout link on your nav-menu, you can simply add these codes in the end of functions.php file of your theme.

add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);
function add_login_logout_link($items, $args) {
 
		ob_start();
		wp_loginout('index.php');
		$loginoutlink = ob_get_contents();
		ob_end_clean();
 
		$items .= '
  • ‘. $loginoutlink .’
';
 
	return $items;
}

Good luck.

 

UPDATED:

For a plugin, you can try (by 15$ ;-)) “Ajax Login/Registration Bar WordPress” on codecanyon.net. (but it is out of date).

/or “Admin Bar Login” on WordPress.org (if you allow admin bar for your users&viewers)

/or “WP Sliding Login/Dashboard Panel” on WordPress.org (this is sliding login form, try it!)

/or a lot of modal login form plugin on WordPress.org like “SimpleModal Login”

/or “Login With Ajax” for a nice login widget.

 

Good luck

Oh I tried that but I had that. I want the something how AnswerBox theme. Thanks! You know any plugin for do that?

Hi @chuki
I updated the answer, please try them.

You are viewing 1 out of 1 answers, click here to view all answers.