Skip to content

Instantly share code, notes, and snippets.

@jkudish
Created January 11, 2012 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkudish/c130e502fccc1accc733 to your computer and use it in GitHub Desktop.
Save jkudish/c130e502fccc1accc733 to your computer and use it in GitHub Desktop.
replacement for views/table.php
<?php
if( function_exists('tribe_get_linked_day') ) {
$return .= tribe_get_linked_day($date, $day); // premium
} else {
$return .= $day;
}
/**
* above are lines 103-107 of views/table.php
* to remove the link from the day/calendar you will have to replace this by just the following:
* NOTE: this only affect PRO users
*/
$return .= $day;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment