Jump to content

Hide Saturday and Sunday from the Attendance widget


K.Ermit

Recommended Posts

Using CSS in an HTML widget, you can set these columns to not show

<style>

    .widget_attendance_registration_detail .table th:nth-child(7),
    .widget_attendance_registration_detail .table th:nth-child(8),
    .widget_attendance_registration_detail .table tr td:nth-child(7),
    .widget_attendance_registration_detail .table tr td:nth-child(8) {
        display: none !important;
    }

</style>

n-child(7) = Saturday's column, 

n-child(8) = Sunday's column, 

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...