By Abraham Tol on Thursday, 31 January 2019
Posted in Technical Issues
Replies 5
Likes 0
Views 553
Votes 0
Hi for some strange reason no READ MORES are display on any type of List Report (front page, category etc).

I cannot seem to locate the issue. but it did work before.
Hey there,

Can you provide us with your FTP's access for https://berryvincenta.com/ so that I can have a better check and troubleshoot it for you quickly?
·
Thursday, 31 January 2019 10:51
·
0 Likes
·
0 Votes
·
0 Comments
·
credentials updated
·
Thursday, 31 January 2019 11:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

It seems that you had a template override for it which is at JoomlaFolder/templates/yourCurrentTempalte/html/com_easyblog/blogs/latest/default.main.php and it uses the old code of EasyBlog.

I had helped you to replace the following PHP code:

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


</div>


with the following PHP code:

<?php if ($post->hasReadmore() && $this->params->get('post_readmore', true)) { ?>
<div class="eb-post-more mt-20">
<a class="btn btn-default" href="<?php echo $post->getPermalink();?>"><?php echo JText::_('COM_EASYBLOG_CONTINUE_READING');?></a>
</div>
<?php } ?>


It should be working fine now. Can you have a try and see how it goes?
·
Thursday, 31 January 2019 12:36
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post