BuddyBoss Home – Web Support Forums Themes BuddyBoss theme how to remove logo from log in page

Viewing 9 posts - 1 through 9 (of 9 total)
  • Question

    #32821
    @tmg2014

    Is there a way to make the logo not show up on the login page? Or a way to add a separate one just for that? Mine looks all goofy because of the size

    Answers

    #32828
    @tmg2014

    Still having some problems if anyone is out there! I downloaded Filezilla but I’m really not sure what I’m looking for. I read in another thread its line 86? but they aren’t number and I dont’t have that many lines on the log in htp code if I’m pulling up the right window. Is there any way to do it from the dashboard? Is filezilla what I should be using? I have a dell laptop.

    #32834
    @george123

    Just limit the size via css or use css to “display: none;” for the element

    #32841

    Alyssa
    Participant
    @alyssa-buddyboss

    @tmg2014 try adding this to your functions.php file of the child theme:

    add_action('login_enqueue_scripts','hide_logo');
    function hide_logo(){
    echo '<style>
    #login h1{display:none;}
    </style>';
    }


    @george123
    FYI custom.css is not loaded on the login page

    #32865
    @tmg2014

    Is there a video anywhere on uploading a child theme? I watched Michael’s on youtube and they were very helpful. He mentioned doing one but I can’t find it.

    #32866
    @tmg2014

    Where do I find the prepackaged child theme?

    #32868
    @style960

    @tmg2014 When logged into this site go to https://www.buddyboss.com/my-account/ or click My Downloads from the header menu. You can download the child theme from there, install from the WordPress dashboard in the same way you installed the BuddyBoss theme.

    #32893
    @tmg2014

    I got the child theme all happy and running. I added the text and it removed the logo but now this text shows up on every page

    add_action(‘login_enqueue_scripts’,’hide_logo’); function hide_logo(){ echo ”; }

    #32916

    Alyssa
    Participant
    @alyssa-buddyboss

    @tmg2014 did you add it to the functions.php file of your child theme? Which line?

Viewing 9 posts - 1 through 9 (of 9 total)
  • The question ‘how to remove logo from log in page’ is closed to new replies.