Sutherland Boswell
Forum Replies Created
-
How are you inserting the ID into the shortcode? It sounds like there may be a simpler way to code what you’re trying to do.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Don't post thumbnail in postThis is more of a support question for your theme author since it’s a problem with all featured images, but this page may help you find which file (likely single.php) you’ll need to edit to remove the section of code that displays the featured image on post pages.
Can you try to explain how you’re embedding videos more clearly? Are you using a custom field containing the YouTube ID?
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Vimeo RSS URL rewriteAdded to my to-do list, thanks for the suggestion!
Images are uploaded an attached to posts, so disabling those options only affects future posts. It looks like the problem is not related to Video Thumbnails since it happens when you manually upload an image. Looking at the source my guess is that WP User Frontend or some other plugin is displaying all attached images, so try disabling that plugin.
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails Plugin Stopped WorkingHey everyone!
I released version 1.8.2 today which hopefully should fix the problem. Let me know if it works or if you’re still experiencing issues!
Thanks for the detailed report. As you can imagine, this has been hard to track down but it sounds like your hosting setup could help me troubleshoot. Do you mind sending me a login for a test installation where you’re experiencing the issue? I’d really love to get this fixed but I can’t replicate the problem on my local or remote server. sutherland.boswell@gmail.com
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Doesn't work on Pages?Have you checked to make sure pages are enabled in the settings? Also, are you able to manually set thumbnails for pages?
Are you using the gallery shortcode in your posts or is it a part of your theme?
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] Not Working After Recent UpdateDuplicate of this thread: http://wordpress.org/support/topic/video-thumbnails-plugin-stopped-working
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails Plugin Stopped WorkingIf the version I linked to before doesn’t work for you can you please share your PHP version? I believe that fix requires PHP 5.3 or higher.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] BrokenDuplicate of this thread: http://wordpress.org/support/topic/video-thumbnails-plugin-stopped-working
Forum: Plugins
In reply to: [Video Thumbnails] Video Thumbnails Plugin Stopped WorkingHey guys, are you all using YouTube videos? If you are, can you see if it will work using Vimeo?
If other video sources work, the problem is likely related to changes YouTube is making concerning IPv6. Try this version and let me know if it works.
Look at line 516, you must have left the closing
}afteradd_action(...)in.The plugin checks the URL to determine if the script for the scan past posts button should be loaded, so the slash workaround seems to be breaking that.
Can you try replacing
if ( isset ( $_GET['page'] ) && ( $_GET['page'] == 'video-thumbnail-options' ) ) { add_action( 'admin_head', 'video_thumbnails_past_ajax' ); }with just
add_action( 'admin_head', 'video_thumbnails_past_ajax' );