Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Created December 21, 2018 20:54
Show Gist options
  • Save rafsuntaskin/7ac91a79647cc95da3fe107dd4fb4f9a to your computer and use it in GitHub Desktop.
Save rafsuntaskin/7ac91a79647cc95da3fe107dd4fb4f9a to your computer and use it in GitHub Desktop.
Evens Calendar - Month view default tooltip
<?php
add_filter( 'tribe_events_template_data_array', 'rt_mt_month_view_default_image', 10, 3 );
function rt_mt_month_view_default_image( $json, $event, $additional ) {
// if featured images is empty
if ( empty( $json['imageTooltipSrc'] ) ) {
$json['imageTooltipSrc'] = "YOUR_IMAGE_LINK";
}
return $json;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment