Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails beta 3 – MPORA thumbsLooks like they have a new embed code, will add support in beta 5.
Update: Also looks like thumbnail URLs have changed, I’ll check it out.
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails beta 3I think I found the problem, in video-thumbnails.php try changing
if ( get_option( 'video_thumbnails_set_featured' ) == 1 && get_option( 'video_thumbnails_save_media' ) == 1 && get_post_thumbnail_id( $post_id ) ) {to
if ( get_option( 'video_thumbnails_set_featured' ) == 1 && get_option( 'video_thumbnails_save_media' ) == 1 && !get_post_thumbnail_id( $post_id ) ) {The last bit checks if there’s already a post thumbnail, but I accidentally had it reversed!
Wistia support is coming soon! Sign up for the beta if you’d like to help test before release.
Yes, on the settings page there is a section for post types. Make sure “pages” is checked and then save your settings.
Forum: Plugins
In reply to: [Video Thumbnails] Vimeo Video Thumbnails not showing in FacebookThere should be plugins out there that add a bit of meta information in your site’s header for sites like Facebook to use when sharing posts. I’d take a look around for one that includes featured images and you should be good to go!
Forum: Plugins
In reply to: [Video Thumbnails] iFrame Youtube Embed Compatible?Can you provide an example of a video url you’re using?
Forum: Plugins
In reply to: [Video Thumbnails] Tutorial???There’s really no need for a tutorial, just embed a video from the list of supported sites into your post and if your theme supports thumbnails it should do all the work for you!
If your theme doesn’t support thumbnails or you need more help, check out the FAQ section.
Forum: Plugins
In reply to: [Video Thumbnails] Support for custom post types ?Check the Video Thumbnails settings page to make sure it is enabled for your custom post type.
Forum: Plugins
In reply to: [Video Thumbnails] Scan Past Posts WarningI’d strongly advise against modifying core WordPress files. There’s a plugin that looks like it will create subfolders for each day. Video Thumbnails uses the built in media library which decides what subdirectory to place images in, so any plugin that modifies the media library should also modify where video thumbnails are stored.
Forum: Plugins
In reply to: [Video Thumbnails] Thumbnail LinkYou’ll need to modify your theme’s code, but if you’re not comfortable with code I’d recommend contacting the theme developer and ask if they’ll link thumbnails to posts.
Forum: Plugins
In reply to: [Video Thumbnails] iFrame Youtube Embed Compatible?Because it’s a paid theme you’ll have to ask the theme’s creator what the name of the custom field is where the video is being stored or check out the theme’s code yourself. Once you have the name of the custom field, you can enter it in the plugin’s settings.
Forum: Plugins
In reply to: [Video Thumbnails] iFrame Youtube Embed Compatible?It should work with iFrames, are you getting a specific error or does it just say that it didn’t find anything? Are you embedded the iFrame code directly, could you give an example for me to test?
Forum: Plugins
In reply to: [Video Thumbnails] Feature imageIf you’re up for editing your theme, you can find the file responsible for the single post page (this may help) and then remove the section of code displaying the featured image. If you want it to still show for non-video posts, you could go a step further and just wrap the code in a conditional statement like
<?php if( get_video_thumbnail() == null ) : ?> FEATURED IMAGE CODE HERE <?php endif; ?>As for the Facebook issue, you can use meta tags in the site’s source to tell sites which image to use for sharing. A quick search turned up this plugin which should do it for you.
Forum: Plugins
In reply to: [Video Thumbnails] its possible to add play button ?You’ll have to use custom CSS, see this thread.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] iIs Making My Site Go SlowThe deTube theme uses a modified version of video thumbnails (as it should say in your plugin list) which means you’ll need to contact the theme’s author if you’re having trouble.