to add this: I also tried editing the Functions.php on my child but it didn’t work
<?php
add_action ( ?__before_loop‘, ?add_blog_page_content_before_post_list‘);
function add_blog_page_content_before_post_list() {
if ( is_home() ) {
$post = get_page_by_path( ?/blog‘ );
echo wpautop($post->post_content);
}
}