By Perry de Raad on Friday, 03 October 2014
Posted in General Issues
Likes 0
Views 785
Votes 0
Hi,

Can I set the archive to show the teaser text.
Now i't only displaying the title when I click on the month.


Regards, Perry
Hello Perry,

I have helped you fix this issue. Can you help me verify this issue is resolves? If you have anymore question, please don't hesitate to ask us.

Please be advise.
Thanks.
·
Tuesday, 21 October 2014 17:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Perry,

I am really sorry for the delay of this reply as it is a weekend for us here. I am sorry but unfortunately right now this is not possible but if you really need to hack this, you can do so by editing the theme file, /components/com_easyblog/themes/default/blog.archive.php and locate the codes below,


<li id="entry-<?php echo $row->id; ?>" class="post-wrapper<?php echo !empty( $row->source ) ? ' micro-' . $row->source : ' micro-post';?>">
<time datetime="<?php echo $this->formatDate( '%Y-%m-%d' , $row->created ); ?>">
<?php echo $this->formatDate( $system->config->get('layout_dateformat') , $row->created ); ?>
</time>
<a href="<?php echo EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id='.$row->id); ?>"><?php echo $row->title; ?></a>
<?php if( $row->isFeatured ) { ?><b class="tag-featured"><?php echo Jtext::_('COM_EASYBLOG_FEATURED_FEATURED'); ?></b><?php } ?>
</li>


Replace it with,


<li id="entry-<?php echo $row->id; ?>" class="post-wrapper<?php echo !empty( $row->source ) ? ' micro-' . $row->source : ' micro-post';?>">
<time datetime="<?php echo $this->formatDate( '%Y-%m-%d' , $row->created ); ?>">
<?php echo $this->formatDate( $system->config->get('layout_dateformat') , $row->created ); ?>
</time>
<a href="<?php echo EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id='.$row->id); ?>"><?php echo $row->title; ?></a>
<?php if( $row->isFeatured ) { ?><b class="tag-featured"><?php echo Jtext::_('COM_EASYBLOG_FEATURED_FEATURED'); ?></b><?php } ?>

<?php echo $row->content;?>
</li>
·
Saturday, 04 October 2014 12:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Marc,

It looks like that not everything works fine.
If you click on the item Archived: see url attached

Than you will see that the url is not complete, it look like this:
see url attached

Could you please have a look.

Regards, Perry
·
Friday, 17 October 2014 17:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Perry,

Please provide us with the back end and FTP access to the site to look into this.
·
Saturday, 18 October 2014 01:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark,

Attached you'll find the information to log in.

Regards, Perry
·
Tuesday, 21 October 2014 17:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mohd,

Thanks for you quick responce, the problem is soved!
Anything I dot wrong or have to take notice off.

Regards, Perry
·
Tuesday, 21 October 2014 17:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Perry,

Actually there is a some typing error and I have fix this. As a reminder, please make sure you backup this file: /components/com_easyblog/themes/default/blog.archive.php before updating EasyBlog since this is a customization and will not be included in the next releases.

Thanks and have a wonderful day.
·
Tuesday, 21 October 2014 18:10
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post