nahor
Junior Member
- Sep 24, 2008
- 156
- 206
Sales Page
There is no need to null or whatever. Its a plugin to WordPress that will automate pulling vids to your sites
**************************************************
Also here's my little fix for those of you using VideoFlick and MyVideoBlog plugin having thumbnail issues...
for those still struggling with the videoflick theme and the myvideoblog for thumbnails, was racking my brains trying to interpret the base64 code in the index file. Finally found someone else decoded it here and it held really no vital code is in the index.php.
It calls for the thumbs in the gallery.php file. I changed the code in there and this fixed the thumbs to show up on my site FINALLY!
here's the code for gallery.php: just one line, but simpler to just replace all text
then you still have to edit the Single Post (single.php) if you havent already
The thumbs can work on any theme you just have to know where your theme is looking to display the thumbs and change it to mvb_thumb_url then the thumbnails will all show up. But in a near future release there is to be a version where the software will custom display whatever thumb your theme is looking to display.
Also if anyone has the latest version of VideoFlick 2.4, please share the wealth
and dont forget to hit the THANKS button...
Code:
[URL]http://www.phpmyvideoblog.com[/URL]
There is no need to null or whatever. Its a plugin to WordPress that will automate pulling vids to your sites
**************************************************
Also here's my little fix for those of you using VideoFlick and MyVideoBlog plugin having thumbnail issues...
for those still struggling with the videoflick theme and the myvideoblog for thumbnails, was racking my brains trying to interpret the base64 code in the index file. Finally found someone else decoded it here and it held really no vital code is in the index.php.
It calls for the thumbs in the gallery.php file. I changed the code in there and this fixed the thumbs to show up on my site FINALLY!
here's the code for gallery.php: just one line, but simpler to just replace all text
HTML:
<div id="contentwrap">
<div id="maincontent">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="galleryitem" id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php echo post_custom('mvb_thumb_url'); ?>" alt="<?php the_title(); ?>" /></a>
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title2('', '...', true, '20') ?></a></h3>
<div class="commentsnumber">
<a href="<?php the_permalink() ?>#comments" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php comments_number('0', '1', '%'); ?></a>
</div>
<p><?php the_content_rss('', TRUE, '', 25); ?></p>
</div>
<?php endwhile; ?>
<div id="pagenavi">
<div id="older" class="alignleft"><?php next_posts_link('Older Entries') ?></div>
<div id="newer" class="alignright"><?php previous_posts_link('Newer Entries') ?></div>
</div>
<?php else : ?>
<h2 class='center'>No posts found</h2>
<?php endif; ?>
</div> <!-- end maincontent -->
<?php get_sidebar(); ?>
</div> <!-- end contentwrap -->
HTML:
<?php get_header();?>
<div id="items">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="item">
<div class="background"></div>
<img src="<?php echo post_custom('mvb_thumb_url'); ?>">
<div class="content">
<h2><?php the_title() ?></h2>
<p><?php the_time('F jS, Y') ?></p>
</div>
</div>
<div id="content_text">
<div id="article">
<h2><?php the_title() ?></h2>
<?php the_content(''); ?>
</div>
<h2>Comments:</h2>
<?php comments_template(); ?>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
<div class="clear"></div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
The thumbs can work on any theme you just have to know where your theme is looking to display the thumbs and change it to mvb_thumb_url then the thumbnails will all show up. But in a near future release there is to be a version where the software will custom display whatever thumb your theme is looking to display.
Also if anyone has the latest version of VideoFlick 2.4, please share the wealth
and dont forget to hit the THANKS button...
Attachments
Last edited: