Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Stephen Harris

    (@stephenharris)

    Thread Starter aolbrechts

    (@aolbrechts)

    Hello Stephen,

    I’ve tried different things in the functions.php file but seems not OK 🙁

    Option A :

    // Remove link from calendar
    add_filter(‘eventorganiser_calendar_event_link’,’myprefix_maybe_no_calendar_link’,10,3);
    function myprefix_maybe_no_calendar_link( $link, $event_id, $occurrence_id ){
    return false;
    return $link;
    }

    Option B :

    // Remove link from calendar
    add_filter(‘eventorganiser_calendar_event_link’,’myprefix_maybe_no_calendar_link’,10,3);
    function myprefix_maybe_no_calendar_link( $link, $event_id, $occurrence_id ){
    return false;
    }

    Not sure what I’m doing wrong ?

    Thanks for the help,
    Antoine

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No link on event ?’ is closed to new replies.