By Sascha on Thursday, 21 January 2016
Posted in Technical Issues
Replies 4
Likes 0
Views 311
Votes 0
I'm using for my test the TinyMCE Editor.
With this editor it is easier to edit, format posts and adjust.

But when i use this Editor i don't have an excerpt at the frontpage.

I only see three dots... When i use your integrated editor it works well.

See the attached file... The link doesn't work...
·
Thursday, 21 January 2016 16:08
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Sascha,

I am really sorry for the delay of this reply.

regarding for you issue with editor tinyMCE, i've replicate it and have fix it.

you can go to this file at components/com_easyblog/theme/wireframe/dashboard/entries/default.php

find this code at line 169:
<?php echo JString::substr(strip_tags($post->intro), 0, 250);?> <?php echo JText::_('COM_EASYBLOG_ELLIPSES');?>
<?php } ?>


replace with this code:
	<?php if (!empty($post->content)) { ?>
<?php echo JString::substr(strip_tags($post->content), 0, 250);?> <?php echo JText::_('COM_EASYBLOG_ELLIPSES');?>
<?php } else { ?>
<?php echo JString::substr(strip_tags($post->intro), 0, 250);?> <?php echo JText::_('COM_EASYBLOG_ELLIPSES');?>
<?php } ?>


hope this help.
·
Thursday, 21 January 2016 17:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks a lot... It works.
Is this available in future updates for all themes ?
·
Thursday, 21 January 2016 18:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Sascha,

You are most welcome. Glad to hear that your issue has been resolved now.

yes we will include this fix in next release version.
·
Thursday, 21 January 2016 18:45
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post