Skip to content

Instantly share code, notes, and snippets.

@geoffgraham
Created December 4, 2015 22:48
Show Gist options
  • Save geoffgraham/3557f5eea6b411d3a615 to your computer and use it in GitHub Desktop.
Save geoffgraham/3557f5eea6b411d3a615 to your computer and use it in GitHub Desktop.
The Events Calendar 4.0 // Hide Saturday and Sunday in Month View
/* Hide Weekends the Events Calendar Monday First Day of Week */
.tribe-events-calendar th#tribe-events-sunday,
.tribe-events-calendar th#tribe-events-saturday,
.tribe-events-calendar tr td:first-child,
.tribe-events-calendar tr td:last-child {
display: none;
}
/* Hide Weekends the Events Calendar Monday First Day of Week */
.tribe-events-calendar th#tribe-events-sunday,
.tribe-events-calendar th#tribe-events-saturday,
.tribe-events-calendar tr td:nth-child(7),
.tribe-events-calendar tr td:last-child {
display: none;
}
@FranckSartori
Copy link

Hi from France.
Those 2 snippets seem to do the exact same thing.
Is there something am I missing ?
Thanks for this work !
See you.
Franck.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment