By Wayne Booth on Thursday, 30 July 2015
Replies 1
Likes 0
Views 1.4K
Votes 0
Hi Guys

is it possible for the ticker to take you to the blog post when you click on it? it currently shows the posts but then you have to go and find that post.

please advise

thanks
wayne
Hey Wayne,

Hm, didn't know that such module actually exists but you can actually modify the theme file /modules/mod_easyblogticker/tmpl/default.php and at line 27 locate the codes below,


<li class="news-item"><?php echo $item->title; ?></li>


Replace it with,


<li class="news-item">
<a href="<?php echo $item->getPermalink();?>"><?php echo $item->title; ?></a>
</li>


And you are right! This module doesn't make any sense if it's not clickable. I am going to fix this in the next release.
·
Friday, 31 July 2015 00:42
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post