By Kurt Snow on Sunday, 15 June 2014
Posted in Technical Issues
Likes 0
Views 512
Votes 0
I do not like where "Continue Reading" shows up on my Joomla site

http://praisenotes.com/index.php?option=com_easyblog&view=latest&Itemid=246

Placed on the right hand side, instead of under the blog text, it is easy to miss. How do I modify it, so that it is immediately under the last introductory word?

Also, when I change the settings of truncation type from paragraph to words, the blog loses all paragraph and style formatting on the introduction.
Hello Kurt Snow,

I am really sorry for the delay of this reply as it is a weekend for us here.
Yes, you can customize the code in this file -> JoomlaFolder\components\com_easyblog\themes\default\blog.item.php
MOVE LINE 115 until 118

<?php if( $row->readmore ) { ?>
<!-- Readmore link -->
<?php echo $this->fetch( 'blog.readmore.php' , array( 'row' => $row ) ); ?>
<?php } ?>


MOVE to

<!-- Maps -->
<?php if( $system->config->get( 'main_locations_blog_frontpage' ) ){ ?>
<?php echo EasyBlogHelper::getHelper( 'Maps' )->getHTML( true ,
$row->address,
$row->latitude ,
$row->longitude ,
$system->config->get( 'main_locations_blog_map_width') ,
$system->config->get( 'main_locations_blog_map_height' ),
JText::sprintf( 'COM_EASYBLOG_LOCATIONS_BLOG_POSTED_FROM' , $row->address ),
'post_map_canvas_' . $row->id );?>
<?php } ?>

<?php if( $row->readmore ) { ?>
<!-- Readmore link -->
<?php echo $this->fetch( 'blog.readmore.php' , array( 'row' => $row ) ); ?>
<?php } ?>


Hope this help.
·
Sunday, 15 June 2014 10:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you. That works, however, when I changed the code one of the photos in an earlier blog (from 30 April 2014) does not show up. When you click to read more, the photo shows up fine. Any ideas why that is hapenning?
·
Tuesday, 17 June 2014 11:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Kurt Snow,

Sorry for late reply to this,
You're welcome, I have a little lost here, do you mean that this blog post the photo not show up? Check my screenshot below.

If you're not referring this, can you elaborate more details regarding this? Also, provide us with your Joomla backend and FTP access as well?
Please advise.
·
Tuesday, 17 June 2014 12:11
·
0 Likes
·
0 Votes
·
0 Comments
·
It appears to be working fine now.
·
Thursday, 19 June 2014 00:34
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for updating, glad that your issues are resolved now
·
Thursday, 19 June 2014 01:06
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post