As the title has asked please
How do I stop the easy blog title and description appearing on the blog home page?
How do I stop the easy blog title and description appearing on the blog home page?
<div class="eb-brand">
<?php if ($view == 'entry') { ?>
<h2 class="eb-brand-name reset-heading"><?php echo JText::_($title);?></h2>
<?php } ?>
<?php if ($view != 'entry') { ?>
<h1 class="eb-brand-name reset-heading"><?php echo JText::_($title);?></h1>
<?php } ?>
<?php if ($this->config->get('layout_header_description')) { ?>
<?php if ($view == 'teamblog' && JRequest::getVar('layout') == 'listings') { ?>
<?php if ($this->config->get('main_includeteamblogdescription')) { ?>
<div class="eb-brand-bio"><?php echo JText::_($desc);?></div>
<?php } ?>
<?php } else { ?>
<div class="eb-brand-bio"><?php echo JText::_($desc);?></div>
<?php } ?>
<?php } ?>
</div>