peterdrinnan
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Here is another quick fix.
Go to \wp-content\plugins\cool-video-gallery\cool-video-gallery.php
Find line 731
Change
$output .= '<a href="' . $video['filename'] . '" title="' . stripslashes($video['title']) . '" rel="fancy_cvg_gallery_'.$gallery_id.'_'. $arguments['placeholder'].'" style="float:left;height:'.$thumb_height.'px !important;">' ; $output .= '<img src="' .$video['thumb_filename'] . '" style="width:' . $thumb_width . 'px;height:' . $thumb_height .'px;max-width:100% !important;" ' ; $output .= 'alt="' . htmlspecialchars('Click to Watch Video') . '" /></a>';to
$output .= '<a href="' . $video['filename'] . '" title="' . stripslashes($video['title']) . '" rel="fancy_cvg_gallery_'.$gallery_id.'_'. $arguments['placeholder'].'" style="float:left;height:'.$thumb_height.'px !important;">' ; $output .= '<img src="' .$video['thumb_filename'] . '" style="width:' . $thumb_width . 'px;height:' . $thumb_height .'px;max-width:100% !important;" ' ; $output .= 'alt="' . htmlspecialchars('Click to Watch Video') . '" />'; $output .= '<div style="width:' . $thumb_width . 'px;"></div>'; $output .= '</a>';
Viewing 1 replies (of 1 total)