Instructions for Theme Mods/Devs
-
It would be great if you could make a sticky post here in support that contains the most basic code required in a theme for FVP to work properly.
I would like to modify my theme (a child theme) to work with FVP’s automated features, but can’t figure out exactly what’s missing from the theme.
According to the instructions:
Themes need to make use of WordPress’ native Post Thumbnail functionality (specifically get_the_post_thumbnail() and/or the_post_thumbnail()) – these functions are where the plugin can hook into the theme and modify what is displayed.
My theme has support for post-thumbnails in functions.php, and the basic code for displaying them is in the page.php template like so:
// check if the post has a Post Thumbnail assigned to it. if ( has_post_thumbnail() ) { the_post_thumbnail(); }
But all I get is a static image (which is definitely being auto-created by the plugin), and it does not link to the video. This seems odd to me, given that the instructions also say:
For the videos to be automatically displayed you need to define a Featured Image. This image will never be shown if a video is available.
It would be nice to know exactly what the plugin is looking for, so I can see if this line is wrong.
Thanks in advance for any time you can take to respond and improve the instructions. This seems like a 5-star plugin, and I really want it to work! ??
- The topic ‘Instructions for Theme Mods/Devs’ is closed to new replies.