Sutherland Boswell
Forum Replies Created
-
Forum: Plugins
In reply to: [Video Thumbnails] Assign featured image from Video ThumbnailObviously something unusual is going on, I’m just unable to recreate the problem. It’s likely that there is another plugin causing a conflict. Can you set up a login for sutherland.boswell@gmail.com or list the other plugins you have installed?
Forum: Plugins
In reply to: [Video Thumbnails] How to remove featured image from video postYou’ll need to modify your theme to not show featured images on the single post page. To do so, I recommend contacting your theme’s developer because every theme is different.
Forum: Plugins
In reply to: [Video Thumbnails] Unsupported MIME type: text/htmlWhat results do you get from the other tests?
Forum: Plugins
In reply to: [Video Thumbnails] "auto detect" bugThat’s odd, glad you figured out the problem. Do you mind sending me a login (hello@sutherlandboswell.com) so I can take a look at what is causing the extra space on your site?
Forum: Plugins
In reply to: [Video Thumbnails] Have to update every post to get this plugin workYou tried the Bulk Video Thumbs page in the Tools dashboard and it was unable to find thumbnails?
Forum: Plugins
In reply to: [Video Thumbnails] Unsupported MIME type: text/htmlAre you only having problems with YouTube? Can you try posting a video from another source like Vimeo to see if you have the same problem?
If all the tests are passing (including pasting your embed code into the markup test) you should double check that if your theme is using a custom field for videos that you have the correct field name entered in the settings.
Forum: Plugins
In reply to: [Video Thumbnails] How can I trigger featured video thumbnail generation?Are you coding the form yourself or using a plugin?
Forum: Plugins
In reply to: [Video Thumbnails] Responsive YouTube VideoVideo Thumbnails only saves thumbnails from the video, it’s up to your theme or embed code to be responsive.
Forum: Plugins
In reply to: [Video Thumbnails] Pages, not postsThe settings page has an option to scan pages. Have you tried enabling this?
Forum: Plugins
In reply to: [Video Thumbnails] Thumbnails way to bigI recommend contacting the theme’s author, this is likely something they would be able to solve.
Forum: Plugins
In reply to: [Video Thumbnails] Multiple Custom FieldsThe best solution for now (I may add the option for multiple custom fields in the future) is to add some code to your theme’s functions.php file or in your own separate plugin.
If it is the same custom field multiple times, use this:
function custom_video_thumbnail_markup( $markup, $post_id ) { $fields = get_post_meta( $post_id, 'my_custom_field', false ); foreach ( $fields as $field ) { $markup .= ' ' . $field; } return $markup; } add_filter( 'video_thumbnail_markup', 'custom_video_thumbnail_markup', 10, 2 );Be sure to replace
my_custom_fieldwith the name of your custom field.If the custom fields have different names, use this:
function custom_video_thumbnail_markup( $markup, $post_id ) { return get_post_meta( $post_id, 'first_custom_field', true ) . ' ' . get_post_meta( $post_id, 'second_custom_field', true ); } add_filter( 'video_thumbnail_markup', 'custom_video_thumbnail_markup', 10, 2 );In this case be sure to replace
first_custom_fieldandsecond_custom_fieldwith the names of your fields.Forum: Plugins
In reply to: [Video Thumbnails] Conflict with WordPress SEO by YoastAre you using any other plugins? I use WordPress SEO and have not had this issue.
Forum: Plugins
In reply to: [Video Thumbnails] Thumbnail Not DisplayingIs the video thumbnail set as the featured image as well in the admin section?
Forum: Plugins
In reply to: [Foursquare Venue] What venue attributes does this plugin support?On the plugin settings page there is a “Help” tab at the top of the screen with a section containing the venue placeholders that are available. As of right now photos are not available.