By Mat Casner on Tuesday, 04 October 2016
Posted in General
Replies 1
Likes 0
Views 169
Votes 0
I would like to know if the "Continue Reading" box can be moved closer to the intro text. See attachment.
Hi there,

It is possible for you to change the "Continue Reading", but you have to do some hacks on this file
...\components\com_easyblog\themes\*your current theme\blogs\latest\default.main.php


//Move these line of code as attached
<div class="eb-post-foot">
<?php if ($post->hasReadmore() && $this->params->get('post_readmore', true)) { ?>
<div class="col-cell eb-post-more">
<a class="btn btn-default" href="<?php echo $post->getPermalink();?>"><?php echo JText::_('COM_EASYBLOG_CONTINUE_READING');?></a>
</div>
<?php } ?>

<?php if ($this->params->get('post_hits', true)) { ?>
<div class="col-cell eb-post-hits">
<i class="fa fa-eye"></i> <?php echo JText::sprintf('COM_EASYBLOG_POST_HITS', $post->hits);?>
</div>
<?php } ?>

<?php if ($post->displayCommentCount() && $this->params->get('post_comment_counter', true)) { ?>
<div class="col-cell eb-post-comments">
<i class="fa fa-comments"></i>
<a href="<?php echo $post->getPermalink();?>"><?php echo $this->getNouns('COM_EASYBLOG_COMMENT_COUNT', $post->getTotalComments(), true); ?></a>
</div>
<?php } ?>
</div>


If you need help regarding this, can you provide us with your Backend and FTP access in order for us to replace this file for you?
·
Tuesday, 04 October 2016 12:14
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post