How to hide tabs in courses

Home Forums Legacy Support Support queries Styling issues How to hide tabs in courses

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #10600
    rakatayama
    Spectator
    Hello! Could you please help me with some questions: -How can I hide the "Members" tab inside a course page? -How can I hide the "Students"count and rating also in a course page? To be more specific I have attached some images.
    #10613
    externaluses
    Participant
    For the one on the left, you can add CSS to hide it. Add this to your "Custom CSS" section in Appearance -> Customize.
    #buddypress .students_undertaking{
    display:none;
    }
    For the other one, you'd have to most likely use PHP to unset that list item from being generated.
    #10689
    Anshuman Sahu
    Keymaster
    Thanks there externaluses . To hide the membrs : https://wplms.io/support/forums/topic/hide-members-menu-in-course/ To hide Course reviews  add the given css from wp-admin -> appearance -> customize -> custom css : #buddypress .course_reviews { margin: 60px 0; display: none; }  
    #10727
    rakatayama
    Spectator
    Thanks for the answer! Alex, sorry for the rookie questions, but where exactly do I find the wplms-customizer.php file to hide the members? Is there any documentation with all the codes (most used ones) we can refer to? Best,  
    #10965
    Anshuman Sahu
    Keymaster
    You can find this file from wp-admin -> plugins -> editor . Select wplms customizer plugin to edit . After the page is loaded the file will appear in a text editor to you add the code before ?> at the end . refer : https://wplms.io/support/knowledge-base/how-to-use-coding-tips/
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to hide tabs in courses’ is closed to new replies.