Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] No video thumbnail for this postHi! Glad you were able to figure out a solution, but I wanted to point out that it’s not a great idea to edit the plugin files directly. If you are comfortable writing a little code there is a hook that will allow you to extend the plugin yourself, or the Pro version offers a feature where you can set custom fields that only contain the video ID.
Forum: Plugins
In reply to: [Video Thumbnails] No thumbnails from Vimeo downloadingIf the video is not in the regular text section, you’ll need to set the custom field’s name on the settings page.
Forum: Plugins
In reply to: [Video Thumbnails] No video thumbnails fo this post errorWhat type of host/server are you using? It sounds like your server has trouble communicating with the YouTube servers. Is there any more specific error message?
If you run the other provider tests, do any of them work?
Forum: Plugins
In reply to: [Video Thumbnails] Vimeo displays small thumbnail instead of large thumbnailThe image from the OEmbed API seems to usually have a size appended to the URL like
.../1234_1280.jpgand if you just drop the_xxxxpart it should give the largest version available. I’m planning for the next version to do this, but you can try it yourself by finding the line$result = $result->thumbnail_url;and replace with
$result = preg_replace("#_[0-9]+\.jpg#", '.jpg', $result->thumbnail_url);Forum: Plugins
In reply to: [Video Thumbnails] Vimeo Access Token SecretI’ve written a beta version that supports OAuth2, however it may break on older versions of PHP. If you don’t mind testing it out it would be greatly appreciated.
Forum: Plugins
In reply to: [Video Thumbnails] Are Private Videos on Vimeo still supportedIf you leave out one of the keys, the plugin will fall back to using OEmbed instead of the API, which means private videos won’t be accessible. I’ve written a beta version that supports OAuth2, however it may break on older versions of PHP. If you don’t mind testing it out it would be greatly appreciated.
Forum: Plugins
In reply to: [Video Thumbnails] Plugin breaks additional fields in post edit screenThanks for the heads up! Fixed in version 2.12.3
Forum: Plugins
In reply to: [Video Thumbnails] Are Private Videos on Vimeo still supportedOops, I should have been more specific, those tabs are on the Vimeo developer page.
Forum: Plugins
In reply to: [Video Thumbnails] Vimeo Access Token SecretHi! There should be tabs at the top of the page with “Basic”, “OAuth”, and “OAuth2”. If you select “OAuth” there should be all the keys you need.
Forum: Plugins
In reply to: [Video Thumbnails] Are Private Videos on Vimeo still supportedHi! There should be tabs at the top of the page with “Basic”, “OAuth”, and “OAuth2”. If you select “OAuth” there should be all the keys you need.
Forum: Plugins
In reply to: [Video Thumbnails] image resize does not work properlyHi there! For support with the Pro version please use the official support page.
Forum: Plugins
In reply to: [Video Thumbnails] Fix for VimeoI recommend using featured images rather than the video thumbnail function.
I’m preparing version 3.0 for release and these functions are likely being removed. Do you have save to media library enabled?
Forum: Reviews
In reply to: [Video Thumbnails] WarningI deeply apologize and acknowledge that my handling of the situation was wrong.
If you log in to the new private support or email sales@refactored.co I would be happy to refund your purchase.
Forum: Plugins
In reply to: [Video Thumbnails] Vimeo displays small thumbnail instead of large thumbnailThat’s odd, typically I’d expect it to be at least 1280px wide like below.
https://i.vimeocdn.com/video/579215742_1280.jpg
I’m taking a look into this to make sure it always finds the largest available.
As for selecting image resolutions, I’ve written Video Thumbnails with the goal of always fetching the largest available resolution (I get feedback that images are both too small – and too big) instead of being able to select specific sizes. If you never need the images to be above a certain size, the pro version has a option that will downsize the image to your max dimensions.
You’re very welcome! Appreciate the kind words.
Forum: Reviews
In reply to: [Video Thumbnails] Upload Options only for pro usersThat’s not the case. Video Thumbnails was designed and built as a fully featured plugin available long before the pro version was ever available, and no features were removed from the standard version.
My goal with the pro version was not to force users to upgrade, but to support some new features the majority of users don’t need. This includes setting an aspect ratio, maximum image size, and a custom directory.