Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] Plugin abandoned?Not abandoned! I’ve been busy for awhile but have a completely rewritten version ready for release very soon. You can see the development version here.
Forum: Fixing WordPress
In reply to: Viduze Thumbnails for videosHave you checked the video thumbnails settings? There are options to enable it for custom post types or custom field.
Forum: Plugins
In reply to: [WP Super Cache] 4.2.1 initial blank page load4.2.2 also resolved the issue for me.
Forum: Plugins
In reply to: [Video Thumbnails] Using Video Thumbnails Pro with WistiaCan you share an example of the embed code you are using? Does the theme use a special field for the video, and if so have you entering anything in the custom field setting?
Forum: Plugins
In reply to: [Video Thumbnails] wp updateThe latest update was just a few weeks ago, what is the problem you’re having that you need an update for?
Video Thumbnails is only used to set the featured image. The video options you see in that video are a part of the theme they’re using, so you’ll need to develop that into your theme or use a plugin to do the same.
The custom field is used if you aren’t pasting the video into the post itself, so if you leave the setting blank you should see it working when you put a video in a normal post.
Forum: Plugins
In reply to: [Video Thumbnails] post format filterOops, glad you were able to figure that out!
Forum: Plugins
In reply to: [Video Thumbnails] No thumbnail for TEDHope you’ll leave a review!
Forum: Plugins
In reply to: [Video Thumbnails] No thumbnail for TEDThanks for sharing your embed code, it looks like there’s an addition for the non-english versions of videos that I was unaware of. I will have this fixed in the next update.
Forum: Plugins
In reply to: [Video Thumbnails] Youtube V2 API will be shut off at 20 aprilThank you for the reminder, and the good news is that Video Thumbnails will not be affected.
Forum: Plugins
In reply to: [Video Thumbnails] Adding Video Thumnails to Rss Feed?Same basic concept, but this code gets the video thumbnail instead of featured image:
// THIS INCLUDES THE VIDEO THUMBNAIL IN OUR RSS FEED function insertVideoThumbnailRSS($content) { global $post; if ( get_video_thumbnail( $post->ID ) != null ) { $content = '<img src="' . get_video_thumbnail( $post->ID ) . '" />' . $content; } return $content; } add_filter('the_excerpt_rss', 'insertVideoThumbnailRSS'); add_filter('the_content_feed', 'insertVideoThumbnailRSS');Forum: Plugins
In reply to: [Video Thumbnails] Adding Video Thumnails to Rss Feed?The following code which can be added to functions.php in your theme is from this thread and is a global way to include the featured image (regardless if it is a video thumbnail) in RSS.
// THIS INCLUDES THE THUMBNAIL IN OUR RSS FEED function insertThumbnailRSS($content) { global $post; if ( has_post_thumbnail( $post->ID ) ){ $content = '' . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'alt' => get_the_title(), 'title' => get_the_title(), 'style' => 'float:right;' ) ) . '' . $content; } return $content; } add_filter('the_excerpt_rss', 'insertThumbnailRSS'); add_filter('the_content_feed', 'insertThumbnailRSS');Forum: Plugins
In reply to: [Video Thumbnails] Videos show up way too large on the individual blog postSo it is the actual video itself that is showing up too large? Video Thumbnails only creates the thumbnail image, so if the video embed is too large I don’t know how to help you.
One suggestion I have is that the content width variable can be set in your theme’s functions.php file like so:
if ( ! isset( $content_width ) ) { $content_width = 600; }Forum: Plugins
In reply to: [Video Thumbnails] Videos show up way too large on the individual blog postIs it a theme you’ve built yourself? The way the thumbnails are displayed is out of the plugin’s control, because each individual theme is different I can’t give you a definitive answer. Your best option is to try contacting the theme’s developer.
Forum: Plugins
In reply to: [Video Thumbnails] Featured image not being automatically setI’ll need to know a little more about your setup. Are your videos in a custom field? What other plugins are you using?