Drupal - how to Remove "Add new Content" from the Main page
Just add this code to the page.tpl.php or page--front.tpl.php on Drupal 7.
find
<?php print render($page['content']); ?>
and replace with below code.
<?php if(drupal_is_front_page())
{
unset($page['content']['system_main']['default_message']);
}
print render($page['content']);
?>
And i believe you surely get all blocks or contents you posted on page.
and to remove page title on page like
Welcome to "website name"
find this code on page.tpl.php or page--front.tpl.php
<?php if ($title): ?><h1 class="title" id="page-title"><?php print $title; ?></h1>
<?php endif; ?>
and you can remove this code or else just make a comment over.