• I use thesis 2.1 and when I am in the back end there is a WordPress toolbar on the left is the WordPress badge.then the name of your website.then a comment balloon, then a plus sign and new than edit page.

    right at the other end it say howdy then my name.
    is there a way of removing this please

    I

Viewing 8 replies - 1 through 8 (of 8 total)
  • Not sure if this covers everything you need, but it might be a good start to cover customization!

    How to Customize the WordPress Admin Area
    How to Customize the WordPress Admin Easily

    Thread Starter johnhenworth

    (@johnhenworth)

    Thank you for your quick reply,
    is there a way I could send you a snapshot of the page to show you exactly my problem.
    Regards John

    A quick google search brought up this:

    Drop this in your functions.php file

    function replace_howdy( $wp_admin_bar ) {
        $my_account=$wp_admin_bar->get_node('my-account');
        $newtitle = str_replace( '<my style="background-color: rgb(75, 254, 120); border: 1px solid black; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; font-weight: bold;">Howdy</my>,', 'Logged in as', $my_account->title );
        $wp_admin_bar->add_node( array(
            'id' => 'my-account',
            'title' => $newtitle,
        ) );
    }
    add_filter( 'admin_bar_menu', 'replace_howdy',25 );

    There is also:
    https://wpteach.com/change-the-howdy-in-wordpress-admin-bar/

    And check the plugins section, I know there is at least two that will customize/remove the ‘Howdy’ notification all together.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Oh wait, are you talking about the admin bar itself? This is only visible to you when you are logged into your site. It allows you to log in and out, return to your dashboard, add new posts, etcetera. Your readers can’t see it. (unless they’re logged in, and then it’s their name)

    Thread Starter johnhenworth

    (@johnhenworth)

    yes thats the one, but it over laps my thesis 2.1 menu bar in my thesis dashboard so half of it is not visible.

    regards john

    Thread Starter johnhenworth

    (@johnhenworth)

    I was just thinking , perhaps it could be a thesis problem.until I upgraded to 2.1 it was OK

    Regards john

    Possibly – you will likely get better info/advice about a theme-specific issue from DIYthemes – since commercial themes aren’t supported here – we don’t have access to them.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘wordpress bar’ is closed to new replies.