call adminbar greeting in other place

If I got you right, then you don’t want to show other details than the greetings in the front end admina bar. If that is so then you can use Remove Node to make this work. You can use it like below for only greetings and other options in it to display First remove the … Read more

Customize WordPress admin-bar

There is no setting of putting the admin function vertically but if its a nuisance you can choose to not to display it by adding this filter to your functions.php file. The admin bar will be hidden in the frontpage but will be visible in the dashboard add_filter(‘show_admin_bar’, ‘__return_false’); When you are working you can … Read more

Admin bar is disabled in front

First check admin bar is showing in WP admin. So go to : Users -> YOUR_PROFILE One of the check boxes : “Show Toolbar when viewing site” — make sure that’s checked on . Then if it’s ok add this code to your functions.php : function admin_bar(){ if(is_user_logged_in()){ add_filter( ‘show_admin_bar’, ‘__return_true’ , 1000 ); } … Read more

Wp Admin Bar Customizing Labels

Don’t use add_filter with the_content that way; that is meant for a different context – when you are filtering a returned WP post object. Try something like this instead: function replace_customer_area_title( $wp_admin_bar ) { $newtitle = __(‘Custom Title’, ‘cuar’); $wp_admin_bar->add_node( array( ‘id’ => ‘customer-area’, ‘title’ => $newtitle, ) ); } add_filter( ‘admin_bar_menu’, ‘replace_customer_area_title’ , 33 … Read more