@leoner & @lpgalady
Please edit the file cool-video-gallery.php
, function CVGVideo_Render
replace this section
if(!file_exists(ABSPATH . '/' .$video['thumb_filename']))
$video['thumb_filename'] = $this->plugin_url . 'images/default_video.png';
with
if(!file_exists(ABSPATH . '/' .$video['thumb_filename']))
$video['thumb_filename'] = $this->plugin_url . 'images/default_video.png';
else
$video['thumb_filename'] = site_url() . '/' . $video['thumb_filename'];
Also
$output .= '<a href="' . $video['filename'] . '" title="' . $video['title'] . '" rel="shadowbox;height=' . $options_player['cvgplayer_height'] .';width=' . $options_player['cvgplayer_width'] . '">' ;
$output .= '<img src="' . $this->plugin_url . 'lib/thumbgen.php?src=';
$output .= $video['thumb_filename'];
$output .= '&w=' . $thumb_width . '&h=' . $thumb_height . '&zc=' . $cv_zc . '&q=' . $thumb_quality . '"' . 'alt="' . htmlspecialchars('Click to Watch Video') . '"/></a>';
with
$output .= '<a href="' . $video['filename'] . '" title="' . $video['title'] . '" rel="shadowbox;height=' . $options_player['cvgplayer_height'] .';width=' . $options_player['cvgplayer_width'] . '">' ;
$output .= '<img src="'. video['thumb_filename'];
$output .= '" style="width:' . $thumb_width . 'px;height:' . $thumb_height . 'px;"' . ' alt="' . htmlspecialchars('Click to Watch Video') . '"/>';
Hope this helps. I regret for the inconvenience. I will be releasing an update soon with more features like sorting video files. Will be fixing the issue in my next release.
Thanks
Praveen