Sutherland Boswell
Forum Replies Created
-
Are you using Automatic YouTube Video Posts? If so, there’s an issue I’m working on solving.
Forum: Plugins
In reply to: [Video Thumbnails] WordPress 3.6 video post-format input box@anointed There’s already a way to do this, just hadn’t gotten around to documenting it! Check out this tutorial and let me know if you need any help.
Forum: Plugins
In reply to: [Video Thumbnails] WordPress 3.6 video post-format input boxAre you sure you aren’t using a plugin or theme that adds the “Video” metabox? Post formats have been around awhile (that screen shot is from 2011), but 3.6 was originally planned to include new special meta boxes that would only appear after you’ve selected certain post formats. This feature ended up being removed from 3.6 before it was released so the meta box your video is being stored in must be created by a different plugin or possibly your theme. Please open up a new thread and I’d be happy to help you figure out a solution.
Added this fix, will be out in the next update.
Forum: Plugins
In reply to: [Video Thumbnails] user_meta / Advanced Custom Fields supportIf you’re comfortable with a little bit of coding you could write a little bit of code to find and store the thumbnail for your specific needs, but since it seems to be an unlikely situation it probably won’t have official support anytime soon.
But a basic idea of what you’d need to do is below.
function save_my_user_meta_video_thumbnail( $user_id ) { // Need to include the global var global $video_thumbnails; // Set what we're going to scan $markup = get_user_meta( $user_id, 'whatever_field', true ) // Now scan for a thumbnail foreach ( $video_thumbnails->providers as $key => $provider ) { $new_thumbnail = $provider->scan_for_thumbnail( $markup ); if ( $new_thumbnail != null ) break; } // Save thumbnail URL to user meta if we've found one if ( $new_thumbnail != null ) { update_user_meta( $user_id, 'user_video_thumbnail', $new_thumbnail ) } } add_action( 'profile_update', 'save_my_user_meta_video_thumbnail', 50, 1 );Forum: Plugins
In reply to: [Video Thumbnails] No featured pics in pstThanks for narrowing down where the conflict is probably coming from! Is everyone else experiencing this also using AYVP?
Video Thumbnails should be disabling those filters already (check out /php/extensions/class-ayvp-thumbnails.php), but it’s possible that code is trying to remove the filters before they’ve been added. Also, I’m not really sure why disabling these filters would disable AYVP from setting the YouTube ID as the thumbnail ID, but I haven’t looked too deeply into it yet. I really think the developer of AYVP should reconsider storing a YouTube ID in the thumbnail ID field because of the possible conflicts like this it will cause. I’ll look into it some more to see if there’s anything I can do.
Forum: Plugins
In reply to: [Video Thumbnails] Alt text on featured imagesOops! Should be
alt="' . addslashes( get_the_title() ) . '"because withoutget_it will try to echo the title instead of just insert it into what is already being echoed.Forum: Plugins
In reply to: [Video Thumbnails] Alt text on featured imagesTry posting large blocks of code to Pastebin, but from what I can tell the problem is that you’re already echoing a string, so instead of wrapping
the_title();in<?php ?>you need to do the same thing you did for the src attribute, so it should look likealt="'.the_title().'"Also, wrap it in
addslashes()so that if a title has quotation marks it won’t break the quotes wrapping the alt attribute.alt="' . addslashes( the_title() ) . '"Forum: Plugins
In reply to: [Video Thumbnails] No thumbnail image only get default.pngJust tested with YARPP but using Twenty Twelve and had no problems displaying thumbnails. Be sure YARPP is set to use the thumbnails mode and that Video Thumbnails is set to automatically set featured images.
Forum: Plugins
In reply to: [Video Thumbnails] WordPress 3.6 video post-format input boxIt looks like this feature is no longer making it into 3.6, and instead will be released as a separate plugin. Once that plugin is out I can have Video Thumbnails automatically check if the plugin is enabled and scan the appropriate field.
In the meantime you shouldn’t have a problem getting the same functionality working for your clients by simply setting up a meta box with a custom field for a video.
Forum: Plugins
In reply to: [Video Thumbnails] Blip.tv with custom field doesn't show thumbJust released an update (2.0.5) which should now detect Blip URLs in addition to embed codes.
Forum: Plugins
In reply to: [Video Thumbnails] Generated thumbnails don't existThe bug with non-latin characters has been fixed in version 2.0.4
Forum: Plugins
In reply to: [Video Thumbnails] Change auto image nameJust released version 2.0.4 which includes this fix.
Forum: Plugins
In reply to: [Video Thumbnails] No thumbnails after updateThanks for testing it! I’ve included this fix in version 2.0.4
Forum: Plugins
In reply to: [Video Thumbnails] create thumbnails for GIF imagesJust realized this github issue is you, glad to hear you’ve figured it out.