Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Manrax,

    I actually sent you a link to the wrong forum. ?? Sorry about that.

    Hemingway (the forum we’re in now) isn’t identical to the Hemingway Rewritten theme from WordPress.com. In the future, feel free to ask for help with Hemingway Rewritten here as it doesn’t have it’s own forum:

    https://www.ads-software.com/support/forum/themes-and-templates

    Tag your post there with wpcom-theme in the tags area to be sure it will get attention:

    Forum Themes and Templates WordPress org Forums

    Now, I’ll go ahead and answer your question here.

    How can I prevent the featured image to appear on single post pages?

    It looks like you’re using a child theme, so you can just add this CSS to your child theme:

    /*Hide Featured Image on Single Posts*/
    
    .single-post .wp-post-image {
        display: none;
    }

    That should do the trick.

    Thread Starter manrax

    (@manrax)

    Im sorry for the misunderstanding but your solution removed the wrong featured image. I wanted to prevent the Featured image to replace the default header image.
    Even on a single post page I want the header to be the same as on all the other pages (like this https://develop.sevenoaks-guild.com/forums/)

    Thanks for your help,
    Manrax

    Thread Starter manrax

    (@manrax)

    Ok after many tries I managed to do it.

    If anybody else wants to archive the same thing here’s how to:

    You need to add the following to the functions.php file of your childtheme:

    // REMOVE HEADER REPLACEMENT ACTION
    function child_remove_parent_function() {
        remove_action( 'wp_head', 'hemingway_rewritten_featured_image_headers',999 );
    }
    add_action( 'wp_head', 'child_remove_parent_function' );

    Manrax

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need help with customizing Hemingway Rewritten’ is closed to new replies.