Remove Event title links
-
Hello,
first of all thank you for this awesome plugin. I am using it on 2 websites and LOVE it!
I am using version 0.5.2. and would like to remove the link on the event titles on my calendar page. How can I do that?I found this in sc_event_list.php but don′t know how to remove the link… Thank you for help!
<div class=”event-info’;
if( $single_day_only ) {
$out .= ‘ single-day’;
}
else {
$out .= ‘ multi-day’;
}
$out .= ‘”>’;$out .= ‘<span class=”event-title”><h3>’;
$title = esc_attr($this->db->truncate(min($max_length, $a[‘title_length’]), $event->title));
if( $this->is_visible( $a[‘link_to_event’] ) ) {
$out .= ‘id, $this->get_url($a))).'”>’.$title.’‘;
}
else {
$out .= $title;
}
$out .= ‘</h3></span>’;
- The topic ‘Remove Event title links’ is closed to new replies.