Wordpress plugin for Topbar?

flashmobber

Newbie
Joined
Sep 4, 2012
Messages
47
Reaction score
0
Hey guys,

I am looking for a plugin that shows a bar on top of the screen once a user leaves my homepage. Kind of like when you visit theme websites and they display above the theme a bar with their information on it. Anybody an idea?
 
https://www.hellobar.com/ Is this what you're looking for?

If you want it show when a user tries leaving your page, it's called "exit intend tracking" - not sure if Hello Bar does exit intent.
 
This plugin was easy to set up and use. Unfortunately, it is non-responsive, down to the code used for the spacing at the top.
 
Top bar, Storefront top bar, Custom top bar, Mail chimp top bar, and Fancy top bar countdown are the plugins in WP. You can try these plugins.
 
You could create it with a little bit of HTML/PHP:

Code:
<?php 
function topbar() {
if ( !is_front_page())  {
?>
<div class="topbar">Some Content</div>
<?php }
}
add_action('wp_footer', 'topbar');
?>

The CSS will be something simple like:

Code:
.topbar {
position: fixed;
width: 100%;
height: 40px;
top: 0;
padding: 10px 0;
background: black;
color: white;
}
 
hey guys,

thanks first of all for all suggestions. However, I am looking for a topbar that stays on top once a person leaves my website. Is there such a plugin?
 
hey guys,

thanks first of all for all suggestions. However, I am looking for a topbar that stays on top once a person leaves my website. Is there such a plugin?

Sure, if you manage to create a custom browser add-on and have the user install it, lol good luck with that.
 
Sure, if you manage to create a custom browser add-on and have the user install it, lol good luck with that.

how did they make it here?

http://www.jurablogs.com/

EDIT:
Wait, when you click on a link it does not lead to the other website but rather it opens the external website on their own website right? How can you achieve that with wordpress?
 
Back
Top