-
Author
-
October 9, 2016 at 02:04 #138697HappiierParticipant
You have a post called “Show featured IMAGE before the content area” which works great. However I would also like featured VIDEOS to do the same.
Can you please provide the code for this function.
With Gratitude,
Blaze
PS – I managed to get it to work sometimes using a plugin called ‘featured video plus’… however it seemed to only work spontaneously and created other problems with post grid display.
FROM ORIGINAL POST:
add_action(‘kleo_before_main’, ‘sq7rdu_show_featured_before_content’);
function sq7rdu_show_featured_before_content() {
if (is_single()) {
if (has_post_thumbnail()) {
echo ‘<div class=”fullwidth-image-before-content”>’;
echo the_post_thumbnail(‘full’);
echo ‘</div>’;
}
}
}
October 10, 2016 at 20:03 #138900LauraModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 11, 2016 at 17:49 #139075RaduModeratorHi,
Try with this function and add video to media tab oembed
COPY CODEadd_action('kleo_before_main', 'sq7rdu_show_video_featured_before_content'); function sq7rdu_show_video_featured_before_content() { $video_embed_url = get_post_meta(get_the_ID(), '_kleo_embed', true ) ; if (is_single()) { if ( ! empty( $video_embed_url ) ) { echo apply_filters('kleo_oembed_video', $video_embed_url); } } }
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.