Removing + Google Calendar + iCal Export not working

Home Forums Welcome! Pre-Sales Questions Removing + Google Calendar + iCal Export not working

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1019868
    Lynn
    Guest

    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 –>’;
    }

    }

    #1019903
    Brian
    Member

    Hi,

    Thanks for using the Events Calendar.

    Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.

    The Events Calendar

    Thanks again!

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Removing + Google Calendar + iCal Export not working’ is closed to new replies.