I have this plugin: http://shadowbox-js.com
Now the issue is on the thumbnails on the right column link to the video player site: http://adidas-talk.com/videos/jose-e-pedro-spoof I want to remove that so I opened the home.php file and here's the code I think I need to modify something in there that doesn't link the video to the video player site....
<!-- start right column -->
<div id="rightcolumn" class="Latest_Videos">
<h1>Latest Videos</h1>
<?php $showpost = new WP_query(); $showpost->query('showposts='.$options['featured_video_posts_X'].'&cat='.$options['videos']); $i; ?>
<?php if ($showpost->have_posts()) : ?>
<div class="box_type_a">
<?php while ($showpost->have_posts()) : $showpost->the_post(); $myPosts .= $post->ID . ","; ?>
<div class="main_vid_item">
<div class="<?php echo ($i%2)?"pic":"pic-alt";$i++;?>"><?php show_thumb($options['big_thumb_w'],$options['big_thumb_h'],$options['crop'],$options['quality']); ?></div>
<h3>" title="<?php the_title(); ?>"><?php the_title(); ?></h3>
<p>" title="<?php the_title(); ?>"><?php print do_excerpt(get_the_excerpt(), $options['snippet_level2']); ?></p>
<ul class="etc">
<li class="readit">"><?php print WATCH_IT_CAPS; ?>
<div class="clear"></div>
</div>
<?php endwhile; ?>
</div>
I think It might be this line that I need to modify...?
<h3>" title="<?php the_title(); ?>"><?php the_title(); ?></h3>
<p>" title="<?php the_title(); ?>"><?php print do_excerpt(get_the_excerpt(), $options['snippet_level2']); ?></p>
Hope someone can help me out... thanks.