By Carl Mill on Saturday, 23 November 2013
Posted in General Issues
Replies 4
Likes 0
Views 738
Votes 0
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?
Hello Carl Mill,

You could also go to backend > easyblog > themes > select your themes and set the following parameter.
screenshot --> http://screencast.com/t/BB5yMzKdz3g

Thank:)
·
Saturday, 23 November 2013 14:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Carl,

I am really sorry for the delay of this reply as it is a weekend for us here.
Actually some of the post metadata item can set to disable, but not all the metadata got the setting from backend.
You can hack in your file to remove it from JoomlaFolder\components\com_easyblog\themes\YourTheme\blog.read.php
Remove the Line 58 until 98

<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>

Hope this help.
Please let us know if you need further assistance and provide your Joomla backend and FTP access so we can help you remove the code from your file.
·
Saturday, 23 November 2013 14:00
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks, Khairul! That's exactly what I was looking for.
·
Tuesday, 26 November 2013 03:00
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Carl,

I'm glad that you found what you're looking for If you have any problems please don't hesitate to ask us.

Have a nice day!
·
Tuesday, 26 November 2013 09:20
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post