Sutherland Boswell
Forum Replies Created
-
They could be setting it as a hidden custom field, which means there’s actually an underscore at the beginning. Try setting it to
_video_htmlCSS sprites aren’t a realistic solution in this scenario, and page load performance is outside the scope of this plugin.
“Automatically set thumbnail as featured image” should most likely be enabled (if your theme uses featured images), but that wouldn’t stop the plugin from at least finding the thumbnail.
The reason JW Player isn’t officially supported is because changing the standard player for videos makes the video more difficult to detect. At the moment I don’t have the time to create proper support for the JW Player plugin, but I can recommend storing the YouTube address as a custom field and then setting that custom field in Video Thumbnail’s settings. If you’re adventurous you could even try using this field to embed the video in your site.
Make sure the “portfolio” post type is enabled in the plugin’s settings. Can you share an example of the html you’re using for a video?
So the plugin is finding the image when you publish the post, it just isn’t displaying it on the front end?
Strange, it still seems to work in my tests but it does look like a version parameter is now needed to avoid errors. Can you try changing
$request = "https://api.foursquare.com/v2/venues/$id?client_id=$client_id&client_secret=$client_secret";
to
$request = "https://api.foursquare.com/v2/venues/$id?client_id=$client_id&client_secret=$client_secret&v=20111113";Like you said though, that may just be a coincidence. The timeout seems like a more basic problem of the server being unable to reach foursquare.
Yes, you’ll need to enter something in “custom field” if your theme has the embed code in a separate field. Somewhere in your theme’s code you should find something like
get_post_meta($post->ID, 'key');, but ‘key’ will be equal to something else like ’embed_code’, and that is what you’ll enter in the custom field setting. If you can’t find what this value should be, ask the theme’s creator what the title of the custom field should be.It’s not supported officially supported by Video Thumbnails, which means I haven’t had the time to personally test them together. If it used to work and now it doesn’t, something must have changed on the JW Player end.
Any more details (like some sample embed codes) you can provide would make it more likely for support to be added.
JW Player is not officially supported at this time. Can you get an example of how you embed? Do you use a shortcode like
[youtube]http://www.youtube.com/watch?v=fyuNjdSrV[/youtube]Did it stop finding new thumbnails or did old ones disappear?
Forum: Plugins
In reply to: [Video Thumbnails] Not pulling thumbnails from custom post type@bsetter I’m not sure Vimeo’s thumbnail URLs will stay the same if the image is changed, so you might actually end up with broken images. I haven’t actually tested it, so let me know if that ends up being the case or not.
@ibalaban since his issue the plugin has been updated, so all you should need to do is choose the right post type in the Video Thumbnails settings page and enter the name of the custom field it stores your video in. This could be something like ‘video’ or ’embed_code’ but varies from theme to theme.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Thumbs stopped working?…How many videos are you dealing with? The Vimeo API has a rate limit, so you might have exceeded this limit. Try again after a few hours.
Forum: Plugins
In reply to: [Video Thumbnails] Not pulling thumbnails from custom post typeFirst thing I’d recommend is simplifying your code a bit. If you have the plugin set to save thumbnails to your media library and set as featured image, you can change all of this:
<?php if( ( $video_thumbnail = get_video_thumbnail() ) != null ) :?> <img src="<?php video_thumbnail(); ?>" alt=""/> <? elseif(has_post_thumbnail()) : ?> <?php the_post_thumbnail(); ?> <?php else :?> <?php endif;?>to just this:
<?php if(has_post_thumbnail()) : ?> <?php the_post_thumbnail(); ?> <?php endif;?>It’s possible that where you had
<? elseif(...could be causing problems depending on your server’s php configuration.Also be sure to check that your settings have the correct custom post type selected and the custom field blank.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Search by categoriesI’ll keep this in mind, but I’d really suggest looking into creating a custom post type for videos. It can be a little challenging but Custom Post Type UI can get you started in the right direction.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Self Hosted Video Thumbs?Processing self hosted videos would likely require additional software on your server, so right now the plugin focuses on external services. I’d really recommend uploading to a service like Vimeo or YouTube anyways and then embedding it in your post, which can be done pretty easily from iOS. If auto-embeds are enabled in your WordPress settings, you can just post a link to the video and it will be converted to the proper embed code.