BuddyBoss Home – Web Support Forums Solutions Social Learner Problem with custom login

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

    #56606
    @randall-league

    I’m trying to create my custom login using Boss’s intergrated WP login theme. I have set my logo but the website title still displays over the logo. The website title is “Student Center”. How do I get rid of that?

    View post on imgur.com

    Answers

    #56645

    Anonymous
    @

    Hi @randall-league, Please let me know if you are using any login styling third party plugin and paste your website url to inspect the issues.

    Regards

    #56723
    @stingray309

    Hi Pallavi

    I have the same issue…and I’m using s2mmember for the login. Its the same URL that you helped me with before. I have the latest themes added too. Can you take a peak at my site and let me know what you find?

    Jim

    #56882

    Anonymous
    @

    Hi @stingray309, If you are using s2Member then just ‘Select Default view instead of Customize with s2Member’ in the option in s2member > General setting > Login/Registration Page

    Regards

    #56890
    @stingray309

    Hi

    Funny how easy some of the fixes are. That worked…:)

    Thank you!

    Jim

    #57077

    Anonymous
    @

    @stingray309 Glad to hear that worked 🙂

    #57389
    @randall-league

    Is there a way to use an image as a background?

    Before I used the
    Wordpress Login Theme plugin and could do it but I don’t see the option in Social Learner.

    #57422

    Anonymous
    @

    Hi @randall-league, Please use this css to add background image (replace the image url with your image).

    
    body.login {
      background-image: url('login-bg.jpg');
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center;
    }
    

    Regards

    #63002
    @hjerryw

    Hello,
    I also wanted to add a background image to the login screen. But nothing happens as I added the code you have mentioned above. Please see the attachment. Is there anything wrong?
    Thanks

    #63656
    @vapvarun

    Hi @hjerryw

    Custom css will not work for login page.
    You will need to add functions for it.

    
    function bb_login_custom() { ?>
        <style type="text/css">
           body.login {
      background-image: url('login-bg.jpg');
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: center;
    }
        </style>
    <?php }
    add_action( 'login_enqueue_scripts', 'bb_login_custom' );
    

    You can add like above and replace login-bg.jpg with your image url full path

    add above code inside functions.php of the child theme.
    For further details you can check
    https://codex.wordpress.org/Customizing_the_Login_Form
    Regards
    Varun Dubey

Viewing 10 posts - 1 through 10 (of 10 total)
  • The question ‘Problem with custom login’ is closed to new replies.