How can I have a static title on my blog page?

the accepted answer in the similar question on stackexchange should work;

try to add this to a suitable location in index.php of your theme:

<?php if( is_home() && get_option( 'page_for_posts' ) ) echo get_the_title( get_option( 'page_for_posts' ) ); ?>