@dawfx: For this, you need to build child theme and edit content-page.php file. So, first look at this article http://catchthemes.com/blog/create-child-theme-wordpress/ and build child theme. Then copy only content-page.php file in your child theme and find the following code
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catchkathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
Then replace it with the following:
<h1 class="entry-title"><?php the_title(); ?></h1>