Dashboard image and menu

Home Forums Legacy Support Support queries Setup issues Dashboard image and menu

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #243878
    lepeolmedo
    Spectator
    Hi! https://prnt.sc/r89cq2 1) ON GREEN: I can´t find how to delete some menus in the instructors and students dashboard. For example, I dont want BUDDYDRIVE to be there. 2) ON RED: How could I add a background picture there? Behind the profile picture. 3) How can I change the colours on the rectangles? CURSOS FINALIZADOS, EXAMENES COMPLETADOS and UNIDADES COMPLETADAS. Thanks a lot!
    #243882
    lepeolmedo
    Spectator
    Sorry, 2 more things: 4) How can I delete some of this options too? Don´t want that many: https://prnt.sc/r89ous 5) When I position the mouse in the menu options, it turns white and cannot be seen by the same background color. I try to change the color with CSS to red (as in the photo) but also change the colors of the username. I don't want this, I just want to change the color when the mouse is positioned. How could I fix it? https://prnt.sc/r89wmg Many thanks!
    #243941
    Jackson
    Blocked
    Dear user,
    1. First problem has been resolved i have deactivated buddydrive plugin.
    2.  we are searching best solution for this as we find we will update 3.   To change the dashboard colors:

    Please goto wp-admin > appearance > personalise > custom css > paste & save.

    .dashboard div#buddypress .wplms-dashboard .dash-widget.courses {

                                        background: #000000 !important;

    }

    .dashboard div#buddypress .wplms-dashboard .dash-widget.quizes {

                                 background: #000000 !important;

    }

    .dashboard div#buddypress .wplms-dashboard .dash-widget.units {

                            background: #000000 !important;

    }

    .dashboard div#buddypress .wplms-dashboard .dash-widget.badges {

                              background: #000000 !important;

    }

    .dashboard div#buddypress .wplms-dashboard .dash-widget.certificates {

                                   background: #000000 !important;

    }

    .dashboard div#buddypress .wplms-dashboard .dash-widget.woo_commission {

                               background: #000000 !important;

    }

    .dashboard div#buddypress .wplms-dashboard .dash-widget.assignments {

                                 background: #000000 !important;

    }                         

    #000000 change color hex value accordingly.

    Refer: http://prntscr.com/nnse9m

    1. To edit profile menu go through LMS< setting< Housed in the menu
    http://prntscr.com/r8cax0   5.  To change menu options hover colors:

    Please goto wp-admin > appearance > personalise > custom css > paste & save.

    .bp-user #vibe_bp_login ul+ul li a:hover{ color:red; }     And paste these CSS for user profile item hover color     .sleek #username a:hover{ color:red; } .sleek #vibe_bp_login ul li#username+li>a:hover{ color:red; } .sleek #vbplogout #destroysessions .logout a:hover{ color:red; } .sleek #vibe_bp_login #sidebar-me #vbplogout a:hover{ color:red; } .sleek #admin_panel_icon a:hover{ color:red; }
    #244005
    lepeolmedo
    Spectator
    Hi! 1) About the options in the User Dashboard, I would like to distable myself some others. How could I do this? 2) That feature would be great! Will you update if it possible in this forum topic? 3) Worked! Thanks. 4) Thanks! 5) Did not worked. I still see hover color on white.   Thank you!
    #244090
    Veronica
    Moderator
    For point 1. PAste below css into this plugin > plugin editor > wplms customizer plugin > wplms customizer.php 
    and you have to pass only slug for particular item to remove in this function:bp_core_remove_nav_item( 'course' );
    this is css for remove item from dashboard add_action( 'bp_setup_nav', 'bp_remove_dashboard_and_my_courses', 999 );
    function bp_remove_dashboard_and_my_courses() {
    bp_core_remove_nav_item( 'course' );
    bp_core_remove_nav_item( 'dashboard' );
     }  
    For point 2. Use this css for cover image this is custom url you can change according to you and paste same css into this appearance > personalize > custom css   .bp-user .pusher #content #buddypress .member_header #item-header { background-image: url("https://i.stack.imgur.com/8Q9xx.jpg") !important; repeat:no-repeat; background-size: cover; }
    For point 5. This is done now on hover color is red if you want to change go in appearance > personalize > custom css and change according to you
    #244501
    lepeolmedo
    Spectator
    Everythig works great. Thank you!
    #244630
    Veronica
    Moderator
    thanks for your words and confirmation. closing this topic.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Dashboard image and menu’ is closed to new replies.