Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] Ability to pull from posts AND custom field?Glad the plugin has been saving you some time!
I put together a quick plugin that modifies the behavior to also scan the post’s content when a custom field is entered in the settings. You can check it out here.
Hope you’ll leave a review!
Forum: Plugins
In reply to: [Video Thumbnails] google drive "No video thumbnail for this post."Can you provide an example of a video it didn’t work for?
Forum: Plugins
In reply to: [Video Thumbnails] Bought Pro version, can't access upgradeHey there!
This support forum is only for the free version, but you should have received an email with a download link and login information for Pro support. If you didn’t, please email sales@refactored.co and let us know!
Forum: Plugins
In reply to: [Video Thumbnails] Source URL OnlyBy source URL do you mean the original video’s address, or the thumbnail URL?
If you mean just the thumbnail URL then it would be
<?php if( ( $video_thumbnail = get_video_thumbnail() ) != null ) { echo $video_thumbnail; } ?>If you aren’t comfortable with code, I recommend you just make sure the featured image setting is enabled and use a theme that supports featured images.
Forum: Plugins
In reply to: [Video Thumbnails] Error retrieving video information from Vine URLGreat! I hope you’ll leave a review.
Forum: Plugins
In reply to: [Video Thumbnails] Custom Field doesn't get recognizedThe initial underscore makes it a hidden custom field, so they must not be showing hidden ones. The one without the underscore is actually a custom field used on the image attachments to identify that it was created by Video Thumbnails. The GD Star Rating plugin doesn’t seem to appear on the WordPress directory, so unfortunately there’s not much I can suggest. The only possibility I can think of is making sure the plugin is setting the video thumbnail as the featured image if there’s a setting like Get Image From -> Featured Image.
Forum: Plugins
In reply to: [WP Vegas] Compatibility Issue with 'Video Thumbnails' pluginThis looks like a bug in the Vegas Slider shortcode. While this information may not be useful to you, it should hopefully help the developer. Shortcode callbacks should create output using return and not echo, more info here: http://codex.wordpress.org/Shortcode_API#Output
Forum: Plugins
In reply to: [Video Thumbnails] Conflict with 'Vegas Slider' pluginThis looks like a bug in the Vegas Slider shortcode. While this information may not be useful to you, it should hopefully help the developer. Shortcode callbacks should create output using return and not echo, more info here: http://codex.wordpress.org/Shortcode_API#Output
Forum: Plugins
In reply to: [Video Thumbnails] Custom Field doesn't get recognizedThe custom field the video thumbnail URL gets stored in is named “_video_thumbnail”, so make sure you have the first underscore.
Forum: Plugins
In reply to: [Video Thumbnails] stalling at one postIf it stalls for more than a minute, that means something’s gone wrong. The scanner should say something like “[284] Scanning post 44 of 65” and the number in brackets (284 in this example) is the post ID. If you open any post in the editor, you should notice the URL is something like
example.com/wp-admin/post.php?post=5093&action=edit. Just replace the ID number (5093 in this case) with whatever the ID is of the post causing it to stall.Forum: Plugins
In reply to: [Video Thumbnails] Error retrieving video information from Vine URLHey Ben,
Your server must have a slow connection to Vine, but the default timeout length can be extended on your server. Since you probably wouldn’t be comfortable handling the code yourself, you can install a plugin that does the job for you. I’ve written one that’s available in this tutorial.
Forum: Plugins
In reply to: [Video Thumbnails] Customizr theme no thumbnailJust tested with the Customizr theme with no problems, are you using any video embedding plugins or just pasting the video into the normal editor like this?
Forum: Plugins
In reply to: [Video Thumbnails] Plugin not working on clean install in default theme.Great! Hope you enjoy and consider leaving a review.
Forum: Plugins
In reply to: [Video Thumbnails] Plugin not working on clean install in default theme.If you can check the plugin’s files, look at
plugins/video-thumbnails/php/providers/class-vimeo-thumbnails.phpand see if it looks like it gets cut off somewhere in the middle. The end of the file should look like this:if( !class_exists( 'VimeoAPIException' ) ) { class VimeoAPIException extends Exception {} } ?>Forum: Plugins
In reply to: [Video Thumbnails] Plugin not working on clean install in default theme.Can you try deleting the plugin and reinstalling? WordPress may have had a hiccup during the installation process.