Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] ErrorIt looks like your host doesn’t allow the use of curl, try contacting them to see if it can be enabled.
Forum: Plugins
In reply to: [Video Thumbnails] Widgetized Video Thumbnails?The thumbnail is set as a featured image, so if you find a widget for related posts that includes featured images, everything should work nicely.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] ErrorYou can sign up to be a part of the beta here. There are a lot of fixes and improvements to be included in the beta, but because a lot of the changes are pretty major I’d like to know it works with a group willing to try it out before accidentally breaking it for everyone.
Here’s info on the WordPress file permissions.
The next beta version will have a debug feature that checks the discovery part of the process and the saving part separately to help find exactly where the problem lies.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] ErrorHave you tried uploading any images to your VPS through WordPress? If it’s a fresh WordPress install you may need to set permissions.
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails is not setting "featured image"Just doubled checked on 3.4.1 and I can seem to be able to recreate the problem. Can you give any more details of your setup? To be honest I’m not quite sure what could be happening but your hosting environment, other plugins running, theme, etc., could help me figure it out.
What is the post’s status in the back end (published, draft, pending, etc.) when it is submitted by a user on the front end?
Twitch is not yet officially supported, and currently only archived Justin.tv clips are supported. I’ll look into seeing how the live player could be included too.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Scan Past Posts?I think I have a temporary fix for you. I believe the same bug that causes the page not to load when there isn’t a slash is causing the plugin not to insert the appropriate JS on the admin page. Find this block of code in the plugin:
// AJAX for Past Posts if ( isset ( $_GET['page'] ) && ( $_GET['page'] == 'video-thumbnail-options' ) ) { add_action( 'admin_head', 'video_thumbnails_past_ajax' ); }and replace it with this:
// AJAX for Past Posts add_action( 'admin_head', 'video_thumbnails_past_ajax' );I think I’ve discovered the source of this error, please see this thread.
The plugin obviously is finding the thumbnails, but it looks like this is a bug related to IPv6. If you’re on PHP 5.3 or above, you can give this version a shot to see if it fixes the issue.
Also please sign up for the beta so I can make sure this issue is fixed when 2.0 comes out.
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails is not setting "featured image"Have you double checked the Video Thumbnails settings? Is there a chance you can see the featured image on the post edit screen but not the front end?
Can you provide an example of an embed code you’re using?
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Scan Past Posts?Do you know which version of PHP you’re using? Can you give any more details?
The thumbnail sizes WordPress creates are determined by your theme and not this plugin. You should notice these image sizes for any image you upload to WordPress.
So the plugin settings have the video thumbnail set as a featured image? If that’s the case you can try this in single.php:
<?php if( get_video_thumbnail() == null && has_post_thumbnail() ) { ?> <div id="single-thumb"> <?php the_post_thumbnail('post-thumb'); ?> </div> <?php } ?>