Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] can't activate the pluginI haven’t had much time to dedicate to this lately, but I believe I have already replaced any cURL specific code with
wp_remote_getin 2.0, just haven’t had the time to tie up any loose ends for a release.Forum: Plugins
In reply to: [Video Thumbnails] plugin cannot find thumbnails, tried numerous timesTry entering
single_format_videoin the custom field section of the Video Thumbnail settings.Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnail addition when using "Press This" SnippetIt definitely should be automatic, but using “press this” must bypass the trigger so I’ll take a look.
Forum: Plugins
In reply to: [Video Thumbnails] Thumbnail Filenames conflicitingAs of right now file names are uploaded as the file name received from the video source. The thumbnails currently retrieved from youtube are named 0.jpg, but WordPress automatically handles duplicate files names by appending a number that results in file names like 01.jpg, 02.jpg, 03.jpg, etc.
These aren’t attractive file names, but a fix is in the works that uses better file names, but not sure when that will be delivered.
As for the conflict, it’s likely there’s a problem with the “Special Recent Posts” plugin because there’s no reason it should be confusing file names since WordPress automatically makes them unique.
Forum: Plugins
In reply to: [Video Thumbnails] Bigger thumbnail images for featured post sliderI’d like to point out that maxresdefault.jpg doesn’t always exist, so the next version has a check to see if it exists then falls back to a smaller size.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] VImeo Thumbnails Not PulledIs it still just saying “We didn’t find a video thumbnail for this post. (be sure you have saved changes first)”, or have you gotten any more detailed error messages?
The plugin only works with embed codes for the list of supported video sources.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] VImeo Thumbnails Not PulledThat should work, they only need to be public when scanned.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] VImeo Thumbnails Not PulledYes, the plugin currently uses the public Vimeo API which only provides public data. In version 2.0 I’ll be switching to the oEmbed API which should solve the problem. You can sign up for an early version of 2.0 here.
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails 2.0 BetaYes, but but because there are few end user changes and because I have limited time to dedicate to non-paying projects I can’t give a timeline of when the next beta release or public release will be. If you’re signed up here you’ll receive updates when they’re available.
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails not workingLucid is a premium theme, so you should ask its author for support. I can only test for errors with Video Thumbnails on free themes.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] VImeo Thumbnails Not PulledIt looks to be a premium plugin, so I can’t provide support for it. I can’t view the video in your sample shortcode though, are you trying to use videos that are private?
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] VImeo Thumbnails Not PulledWhat is the name of the plugin or theme you’re using for the lightbox shortcode?
In the settings of the plugin select your custom post type and set the custom field to ‘youtubecode’.
Since you’re only storing the YouTube ID in that field, you’ll have to modify the plugin to know it’s for YouTube. Change this:
if ( $video_key = get_option( 'video_thumbnails_custom_field' ) ) { $markup = get_post_meta( $post_id, $video_key, true ); } else {to
if ( $video_key = get_option( 'video_thumbnails_custom_field' ) ) { $markup = 'http://www.youtube.com/watch?v=' . get_post_meta( $post_id, $video_key, true ); } else {The plugin interacts with the data for each post using the database, not scanning the actual HTML end result of each template. So how are you saving the YouTube ID into the WordPress database?