Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
jesseeproductions / tec-pro-mini-hide-event-list.php
Created August 14, 2015 15:20
The Events Calendar Pro - Hide Mini Calendar Event List Until Calendar Date is Clicked
/*
* The Events Calendar Pro - Hide Mini Calendar Event List Until Calendar Date is Clicked
* TEC PRO @3.11.1
*/
add_action( 'wp_footer', 'tribe_hide_mini_calendar_list_until_clicked', 50 );
function tribe_hide_mini_calendar_list_until_clicked() {
?>
<script>
var $ = jQuery.noConflict();
@jesseeproductions
jesseeproductions / filter_categories_from_v2_views.php
Created February 19, 2020 16:46
Exclude Categories from The Events Calendar New Views
add_filter( 'tribe_events_views_v2_view_list_repository_args', 'filter_categories_from_v2_views', 20 );
add_filter( 'tribe_events_views_v2_view_month_repository_args', 'filter_categories_from_v2_views', 20 );
/**
* Exclude Categories from The Events Calendar New Views
* For TEC 5.0 and Greater
*
* @param array $repository_args An array of query variables.
*
* @return array An array of query variables.
*/
@jesseeproductions
jesseeproductions / tribe_show_latest_past_events.php
Created April 14, 2020 13:59
Tribe Show Latest Past Events
// Disables on All Views
add_filter('tribe_events_views_v2_show_latest_past_events_view', 'tribe_show_latest_past_events' );
// Disable for a Specific View ( replace month with list, day, map, photo, or week )
//add_filter('tribe_events_views_v2_month_show_latest_past_events_view', 'tribe_show_latest_past_events' );
/**
* Filter to Hide the Latest Past Events
*
* @return bool Return false to disable the Latest Past Events
*/
@jesseeproductions
jesseeproductions / tribe_show_latest_past_events.php
Created April 14, 2020 13:59
Tribe Show Latest Past Events
// Disables on All Views
add_filter('tribe_events_views_v2_show_latest_past_events_view', 'tribe_show_latest_past_events' );
// Disable for a Specific View ( replace month with list, day, map, photo, or week )
//add_filter('tribe_events_views_v2_month_show_latest_past_events_view', 'tribe_show_latest_past_events' );
/**
* Filter to Hide the Latest Past Events
*
* @return bool Return false to disable the Latest Past Events
*/
@jesseeproductions
jesseeproductions / tribe_set_link_to_website_v2.php
Created February 27, 2020 15:38
Modify the Event Permalink if there is a Website URL in The Events Calendar 5.0
@jesseeproductions
jesseeproductions / cctor_change_category_to_location.php
Created February 27, 2020 14:56
Change Categories to Location for Coupon Creator Pro Filter Bar
/**
* Change Categories to Location for Coupon Creator Pro Filter Bar
*
* @param string $translation The translated text.
* @param string $text The text to translate.
* @param string $domain The domain slug of the translated text.
* @param string $context The option context string.
*
* @return string The translated text or the custom text.
*/
@jesseeproductions
jesseeproductions / tribe_exclude_from_search.php
Created February 26, 2020 16:49
Include only Posts and Pages in Search - Used with The Events Calendar 5.0 New Designs are Active
/**
* Include only Posts and Pages in Search
* Used with The Events Calendar 5.0 New Designs are Active
*
* @param $query WP_Query
*
* @return mixed
*/
function exclude_from_search($query) {
@jesseeproductions
jesseeproductions / tribe_change_available_msg.php
Created February 18, 2020 13:33
Change Are No Longer Available Message
/**
* Change Are No Longer Available Message
*
* @param string $translation The translated text.
* @param string $text The text to translate.
* @param string $domain The domain slug of the translated text.
* @param string $context The option context string.
*
* @return string The translated text or the custom text.
*/
@jesseeproductions
jesseeproductions / tribe_change_rsvp_confirmation_msg.php
Created February 12, 2020 15:48
Change the RSVP Confirmation Message
/**
* Change the RSVP Confirmation Message
*
* @param string $translation The translated text.
* @param string $text The text to translate.
* @param string $domain The domain slug of the translated text.
* @param string $context The option context string.
*
* @return string The translated text or the custom text.
*/
@jesseeproductions
jesseeproductions / tribe_change_get_tickets_and_rsvp_now_by_context.php
Created February 11, 2020 18:03
Change the Get Tickets and RSVP Now on List View and Single Events by Context
/**
* Change the Get Tickets and RSVP Now on List View and Single Events by Context
*
* @param string $translation The translated text.
* @param string $text The text to translate.
* @param string $context The option context string.
* @param string $domain The domain slug of the translated text.
*
* @return string The translated text or the custom text.