By Chris Bond on Thursday, 27 February 2014
Posted in General Issues
Replies 5
Likes 0
Views 573
Votes 0
Is there a way or a module that allows tags to appear with the blog entry listings? For example in random blog entries I can show a compiled list of blog entries chosen at random. I would like to be able to show tags so that the viewer can get additional information regarding what is in the entry before they click it.

Thank you for reviewing this question.
Hello Chris,

I'm sorry but there is no such module, but we do have EasyBlog Random Post that might be useful to your site?
you could get them here --> http://stackideas.com/downloads/modules/easyblog

Thanks:)
·
Thursday, 27 February 2014 06:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Ok, I figured so. Thank you for making the time to reply.

Easyblog random post is the module I am referring to include tags with the article information displayed in the aforementioned module.

Are there php sheets from the regular article display with coding lines for including the tags that can be placed into the php coding sheets for the easyblog random post module?
·
Thursday, 27 February 2014 07:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Chris,

This is what you can try in /modules/mod_easyblograndompost/tmpl/default.php


<?php foreach($post->getTags() as $tag){ ?>
<a href="<?php echo EasyBlogRouter::_('index.php?option=com_easyblog&view=tags&layout=tag&id=' . $tag->id );?>"><?php echo $tag->title;?></a>
<?php } ?>
·
Thursday, 27 February 2014 10:25
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark,

Thank you for your attention in the matter. I will give this a shot and play around with it.

Thanks again,

Chris
·
Friday, 28 February 2014 04:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Chris,

I'm glad that your issue is solved If you have any problems please don't hesitate to ask us.

Thanks!
·
Friday, 28 February 2014 06:55
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post