Created
December 21, 2018 20:54
-
-
Save rafsuntaskin/7ac91a79647cc95da3fe107dd4fb4f9a to your computer and use it in GitHub Desktop.
Evens Calendar - Month view default tooltip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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