Skip to content

Instantly share code, notes, and snippets.

@kelly-tribe
kelly-tribe / Change-Google-and-iCal-links.php
Created October 25, 2013 16:13
Snippet to add to your theme's functions.php file to change your iCal and Google Calendar links for your Events Calendar PRO plugin
@kelly-tribe
kelly-tribe / month-view-thumb.php
Created October 24, 2013 01:19
TEC Month View with thumb in grid for day with single event
<?php
/**
* Adapted version of month/single-event.php.
*
* Displays the post thumb in the grid *only* if it is the
* only event showing that day.
*/
if ( !defined('ABSPATH') ) { die('-1'); }
?>
@kelly-tribe
kelly-tribe / alter-or-remove-heading.php
Last active December 25, 2015 03:28
Altering or Removing Headings on Calendar and List Views
<?php
add_filter('tribe_get_events_title', 'change_upcoming_events_title');
function change_upcoming_events_title($title) {
//We'll change the title on upcoming and map views
if (tribe_is_upcoming() or tribe_is_map() or tribe_is_photo()) return 'Upcoming Parties';
//In all other circumstances, leave the original title in place
return $title;