Awesome – thanks for your help so far!
Child Theme created – check!
is_front_page() renamed to is_home() twice in child-theme-folder – check!
Front page no Longe displays featured content – check!
But:
The “featured content”-script on Blog does not work properly. Instead of displaying grid or slide – the six images are displayed full size under each other.
Is there a “featured content”-script reference that I have missed somewhere?
I have tried editing the page template page.php to following:
<?php
if ( is_posts_page() && twentyfourteen_has_featured_posts() ) {
// Include the featured content template.
get_template_part( 'featured-content' );
}
?>
But that did not have the desired effect.
Any other ideas?