I put this in on my theme functions.php page and it did not work. Please help. I do not want this on ANY event.
Here is a link to my page: http://giantstepsschoolpso.org/event/pso-board-meetings/
This plugin came with my Welfare Theme so it should be integrated already. How do i get rid of this.
On a side note I’m also having a major issue with formatting the details columns. they are way too narrow!
/*
* Uncomment the following action to add the Google Calendar Link
*/
//add_action(‘tribe_events_single_event_after_the_content’, ‘tribe_add_gcal_link’);
function tribe_add_gcal_link() {
// don’t show on password protected posts
if (is_single() && !post_password_required()) {
echo ‘
<div class=”tribe-events-cal-links”>’;
echo ‘+ ‘ . __( ‘Google Calendar’, ‘tribe-events-calendar-pro’ ) . ‘‘;
echo ‘</div>
<!– .tribe-events-cal-links –>’;
}
}
/*
* Uncomment the following action to add the iCal Link
*/
//add_action(‘tribe_events_single_event_after_the_content’, ‘tribe_add_ical_link’);
function tribe_add_ical_link() {
// don’t show on password protected posts
if (is_single() && !post_password_required()) {
echo ‘
<div class=”tribe-events-cal-links”>’;
echo ‘+ ‘ . __( ‘iCal Import’, ‘tribe-events-calendar’ ) . ‘‘;
echo ‘</div>
<!– .tribe-events-cal-links –>’;
}
}