Following are steps to remove text from front/home page.
- Create a new view using views module
- Create a page display
- Select Format "fields"
- Set up filters, fields etc. which select empty result
- Go to site information from admin menu, set the front page to view page path.
- Add following code in page.tpl.php to hide the view title as well
<?php if (!drupal_is_front_page()): ?>
<?php if (!empty($title)): ?>
<h1 class="page-header"><?php print $title; ?></h1>
<?php endif; endif; ?>