To add the title “News
Open index.php which in my installation was here:
/htdocs/wp-content/themes/minamaze/index.php
Locate this line:
<?php if( have_posts() ): ?>
Directly above it paste this:
<?php if (is_home()) { ?>
<div><h1 class="page-title"><span>NEWS</span></h1></div>
<?php } ?>
Save or upload the new index.php file.
Issues with this:
You won’t get the red line under the first letter of the new H1 title.
It will be overwritten by the next theme update – may be implementable using a child theme, but I have not got to this stage yet.
I hope others find this useful.