BuddyBoss Home – Web Support Forums Solutions Social MarketPlace Left user button/icon missing in mobile view when not logged in

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

    #67302
    @lshijie

    Sorry for spamming the forums, but I found many problems recently.

    I have 2 problems in the mobile view.

    1. *super crucial* The user icon/button is missing when a guest (not logged in) is viewing the site. Thus, there is no way for the user to login to his/her account.

    2. The slider positioning for the mobile view is way too weird. You can see from the screenshot that it’s too high up or something, it looks squashed.

    Answers

    #67374
    @anve

    Hi @lshijie,

    Go to Settings > Buddypress > options . Enable show toolbar to logged out users for login option in mobile for logged out users.

    Add following css in child theme custom css .

    
    @media screen and (max-width:480px){
    .bb-slide .boss-slide-img {
      height: 100% !important;
    }
    .slick-list.draggable {
      height: 140px !important;
    }
    .bb-slider-wrapper .slick-track {
      height: 100%!important;
    }
    }
    

    Regards
    Anve

    #67437
    @lshijie

    Hi @anve,

    That helps to show the login option for mobile users, but my desktop now has the black bar above that I didn’t want in the first place.

    Is there a way to remove the black bar yet show the login option for mobile users?

    For the slider in mobile view, it looks better after I added your code. Thanks so much for that!

    #67487

    Anonymous
    @

    Hi @lshijie,

    You may need to use the following which will leave the Toolbar available in the Dashboard but hide it on all front facing pages.

    Just add it in your child theme’s function.php

    add_filter('show_admin_bar', '__return_false');

    Regards

    #67510
    @lshijie

    @Pallavi That works! Thanks again!

    #67526
    @anve

    Hi @lshijie,

    Great ,I will close the topic now..If you have other concern, create a new topic…. we will be more than happy to assist you.

    Regards
    Anve

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘Left user button/icon missing in mobile view when not logged in’ is closed to new replies.