Get-Simple: Change the news manager post heading in the template


Get-Simple: Change the news manager post heading in the template

News Manager in Get-Simple content management system has the ugly habit of just showing the title of the news page when displaying a single post. You can overcome this with the following code in the template.

<?php if (( nm_is_site() ) && ( nm_is_single() ))  { ?>
		<h1><?php nm_post_title(); ?></h1>
<?php } else { ?>
		<h1><?php get_page_title(); ?></h1>
<?php } ?>

Since news manager will still show the title of the post in the body of the text we make a small addition to the site style sheet (.css) :

.nm_post_single h3 { display: none; }

 

Go back to the previous page