Remove Login/Logout Header In Fireboard

I was annoyed at how Fireboard displays the login/logout header especially when you already have Community Builder and logging in redirects to the frontpage. And add the fact that I hate seeing my avatar on the header of the forum. So I decided to remove it! Here’s how…

Go to components/com_fireboard and open fireboard.php. Look for the following code.

    //BEGIN: PROFILEBOX
    if (file_exists(JB_ABSTMPLTPATH . '/plugin/profilebox/profilebox.php')) {
        include (JB_ABSTMPLTPATH . '/plugin/profilebox/profilebox.php');
        }
    else {
        include (JB_ABSPATH . '/template/default/plugin/profilebox/profilebox.php');
        }
    //FINISH: PROFILEBOX

And then just comment out the whole thing. So it should look like this afterwards.

    //BEGIN: PROFILEBOX
    //if (file_exists(JB_ABSTMPLTPATH . '/plugin/profilebox/profilebox.php')) {
    //    include (JB_ABSTMPLTPATH . '/plugin/profilebox/profilebox.php');
    //    }
    //else {
    //    include (JB_ABSPATH . '/template/default/plugin/profilebox/profilebox.php');
    //    }
    //FINISH: PROFILEBOX

Hope that helps!

Tags:

Leave a Reply