Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] Downloading more than 1 image?The quality setting only affects the file size, not dimensions. What it sounds like you need is the Maximum Dimension settings.
Forum: Plugins
In reply to: [Video Thumbnails] Downloading more than 1 image?Any image uploaded to WordPress gets several image sizes created according to your settings and featured image sizes in functions.php. Because Video Thumbnails uses the standard WordPress media library, this will also happen for images uploaded by the plugin.
Forum: Plugins
In reply to: [Video Thumbnails] post format filterUnfortunately I haven’t had any time to focus on this feature, but I do hope to include it one day.
The good news is that I do have a solution for you to use in your functions.php file. I have not tested it, but I think it will work:
function limit_video_thumbnails_to_post_format( $markup, $post_id ) { if ( has_post_format( 'video', $post_id ) ) { $markup = ''; } return $markup; } add_filter( 'video_thumbnail_markup', 'limit_video_thumbnails_to_post_format', 10, 2 );Forum: Plugins
In reply to: [Video Thumbnails] Issue with video thumbnails and permalinksThat’s odd but it would explain an issue I’ve had reports of now and then but never had enough info to trace down. There must be something else in the mix though, because I just ran a test (my dev environment was already using post name as the permalink structure) and the permalink for the thumbnail is automatically appended with “-2”. I wish I could track down why it is sometimes not doing this, but the “-thumbnail” solution might be what I have to go with.
As for disabling Video Thumbnails on individual posts, I will keep it in mind. I’m currently exploring some better options for retrieving thumbnails on demand before publishing, so I will try to work that option into the UI.
Forum: Reviews
In reply to: [Video Thumbnails] what about screen.yahoo.comVersion 2.12 adds support for Yahoo Screen. Try it out and let me know how it works, and I hope you’ll consider updating your review!
Forum: Reviews
In reply to: [Video Thumbnails] Very Impressive. Works wonderful for Youtube vidsGlad you enjoy it! Thanks for the review.
Forum: Reviews
In reply to: [Video Thumbnails] Works perfectly with WP Tube themeGlad they work well together! You should check out this tutorial on automatically supporting Video Thumbnails in your theme so that users won’t have to adjust the settings.
Forum: Plugins
In reply to: [Video Thumbnails] Bulk Video Thumbnail Generator speedDoes your theme have a lot of thumbnail sizes registered? Generating each image size could be adding to the time it takes, but it could also be your server’s connection to YouTube. The image download test on the debugging tab of the settings page downloads an image from YouTube, so that should help you be able to see how long your server is taking to download an image and add it to the media library.
Forum: Plugins
In reply to: [Video Thumbnails] Anyone have old version?All past versions are available here on the developer page, but please follow up in your thread here so I can help fix future versions.
Forum: Plugins
In reply to: [Video Thumbnails] youtube not work thumbnailPlease copy and paste the “Installation Information” from the debugging page.
Forum: Plugins
In reply to: [Video Thumbnails] No thumbnail found for TED video sourceI checked out their embed codes and it looks like there’s a recent change. Version 2.11 contains a fix.
Forum: Plugins
In reply to: [Video Thumbnails] How to Auto Update Posts to Show ThumbnailsUnder the tools section of your dashboard is a bulk video thumbs page.
Forum: Plugins
In reply to: [Video Thumbnails] No thumbnail found for TED video sourceCan you share the embed code you’re testing?
Forum: Plugins
In reply to: [Video Thumbnails] Any reason Live Steam is not added to services?Livestream support is coming soon!
Forum: Plugins
In reply to: [Video Thumbnails] Getting thumbnail when post uses shortcodes for videoDid you write the shortcode plugin yourself? Be sure the callback function is returning the HTML as a string instead of echoing it directly.