Here’s my fix, which worked. Go to “editor” under the plugins tabs on your admin panel. Find the timeline plugin and search for the following code:
if($imgSrc!= '')
Underneath there, you’ll see the if/then statements which say if there is a video, display “event video”, else display “No video”.
Just either delete the “no video” text or put comments around it so it’s not read. E.g. the following:
if($imgSrc!= '') {
$timeline_text .= '<li>
<a href="'.$imgSrc.'" rel="prettyPhoto">
Event Image
</a>
</li>';
} else {
$timeline_text .= '<li><!--No Image--></li>';
}
if($video['0']!= '') {
$timeline_text .= ' <li>
<a href="'.$video['0'].'" rel="prettyPhoto">
Event Video
</a>
</li>';
}else {
$timeline_text .= '<li><!--No Video--></li>';