• Resolved _beatrice_

    (@_beatrice_)


    Is there a way to hide the WP logo in the upper left corner of a WordPress site using the BuddyPress theme Frisco for Buddypress?

Viewing 4 replies - 1 through 4 (of 4 total)
  • This isn’t really a Frisco theme issue. But if you drop this code in your theme’s functions file or custom functions file, I think it will do what you’d like:

    /**
    * Remove the WP Logo dropdown from the WP Admin/Toolbar
    */
    function remove_toolbar_wp_logo() {
      global $wp_admin_bar;
      $wp_admin_bar->remove_menu('wp-logo');
    }
    add_action('wp_before_admin_bar_render', 'remove_toolbar_wp_logo');
    Thread Starter _beatrice_

    (@_beatrice_)

    Yes, that did the trick, thank you. I may like to remove that top bar altogether eventually, but this is perfect!

    This worked for me also. Added to functions.php

    Thanks for the post.
    I used the code in one of my buddypress website and it worked nice.

    Regards
    NextTrak.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘WP logo/link in top menu of Buddypress site’ is closed to new replies.