question mark in the dashboard

Home Forums Legacy Support Support queries How-to & Troubleshooting question mark in the dashboard

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #373534
    Food-interactive
    Participant
    Hello Team, can you give us a css code to hide the question mark. We don't use that. In the student area. https://prnt.sc/1xbj5ws Thank you very much :-)
    #373577
    Veronica
    Moderator
    means you just want to hide the tours only for students? but there we have tours for students as well, so how they are going to access tours?
    #373621
    Food-interactive
    Participant
    exactly we want to hide that from the students. We don't need the tours. We will create videos for this
    #373666
    Veronica
    Moderator
    try to add this code in wplms-customizer.php
    add_action('wp_head','hide_tours');
    function hide_tours(){
        $user = wp_get_current_user();
        if ( in_array( 'student', (array) $user->roles ) ) {
        //The user has the "Student" role
            ?>
            
            <style>
            	.profile_grid_header .end_block .tours_wrapper {
    			    display:none !important;
    			}
            
            }  
            </style>
        <?php
        
        }
    #374175
    Food-interactive
    Participant
    that has loaded some code on the page. See photo... :-( https://prnt.sc/1yjtgnz
    #374289
    Anshuman Sahu
    Keymaster
    You put the code in wrong place . Please try adding this code in your wplms-customizer.php file in wplms customizer plugin from wp-admin -> plugins -> edit plugins .
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘question mark in the dashboard’ is closed to new replies.