I want to remove these lines circled in my attachment.
Are there settings in the admin area or do I need to alter the code in the extension?
Are there settings in the admin area or do I need to alter the code in the extension?
<div class="blog-brief ptl pbl mbl">
<div class="in clearfix">
<div class="blog-option mts">
<ul class="reset-ul float-li small fsm">
<?php echo $this->fetch( 'blog.read.fontsize.php' ); ?>
<?php if( $this->getParam( 'show_hits' , true ) ){ ?>
<li class="blog-hit">
<span><?php echo JText::sprintf( 'COM_EASYBLOG_HITS_TOTAL' , $blog->hits ); ?></span>
</li>
<?php } ?>
<?php if( $system->config->get('main_comment') && $blog->totalComments !== false && $this->getParam( 'show_comments' ) ){ ?>
<li class="blog-comments">
<?php if( $system->config->get('comment_disqus') ) { ?>
<?php echo $blog->totalComments; ?>
<?php } else { ?>
<a href="<?php echo EasyBlogRouter::_( 'index.php?option=com_easyblog&view=entry&id=' . $blog->id ); ?>#comments"><?php echo $this->getNouns( 'COM_EASYBLOG_COMMENT_COUNT' , $blog->totalComments , true ); ?></a>
<?php } ?>
</li>
<?php } ?>
<?php if($system->config->get('main_subscription') && $blog->subscription) { ?>
<li class="blog-email">
<a href="javascript:eblog.subscription.show('<?php echo EBLOG_SUBSCRIPTION_ENTRY;?>' , '<?php echo $blog->id;?>');"><?php echo JText::_('COM_EASYBLOG_SUBSCRIBE_BLOG'); ?></a>
</li>
<?php } ?>
<?php echo EasyBlogHelper::getHelper( 'publishtools' )->getHTML( $blog->id ); ?>
<?php if( $system->config->get( 'main_reporting') && ( $system->my->id > 0 || $system->my->id <= 0 && $system->config->get( 'main_reporting_guests') ) ){ ?>
<li class="blog-report">
<a href="javascript:void(0);" onclick="eblog.report.show( '<?php echo $blog->id;?>' , '<?php echo EBLOG_REPORTING_POST;?>' );"><?php echo JText::_( 'COM_EASYBLOG_REPORT_THIS_POST');?></a>
</li>
<?php } ?>
</ul>
</div>
</div>
</div>