• mysticminimalistartisan

    (@mysticminimalistartisan)


    If I don’t want to display the teacher column, is there a way I can hide it? Actually the teacher column AND the teacher row that appears when you click on the class to open the details? TIA!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mysticminimalistartisan

    (@mysticminimalistartisan)

    Hello?

    LBell

    (@lbell)

    Looks like you can use custom CSS to set these two classes to: display: none;

    momoyoga-lesson-teacher
    momoyoga-lesson-link

    Thread Starter mysticminimalistartisan

    (@mysticminimalistartisan)

    @lbell thank you. I just need to hide the teacher name, and not the lesson link, so I tried this but it didn’t work. Did I miss something? TIA!

    .momoyoga-lesson-teacher {
    	display: none !important;
    }

    That should hide the teacher column in the list, if you need to hide the teacher row in the details (that expands) you need to target it based on its position.

    This is working for me:

    .momoyoga-lesson-teacher {
      display: none !important;
    }
    
    .momoyoga-lesson-details p:nth-child(2){
      display: none !important;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can I hide the momoyoga-lesson-teacher column?’ is closed to new replies.