Post views on Hompage

Posted in: Newspaper
Post count: 24

Hi, is there a way to show WP-Post Views on the Homepage. It has function display in homepage but does not do it.

It only shows in actual post. But it would be nice to see the post on the homepage and in the grid next to Authors name and the date.

Thanks!

  • This topic was modified 10 years by libtetto.
Post count: 22421

Hello,

The theme wasn’t designed to display the post views on modules but you can achieve that adding this code http://pastebin.com/JdFgK89X in td_module.php like here: http://screencast.com/t/BjVvJT9m Then you need to edit the module you want the views displayed on
<?php echo $this->get_modules_views();?>
And add the code in one of these files replacing the get_comments code: http://screencast.com/t/HdSVmjPFqE0z3
Then you can use this css for better alignment:

.td_module_wrap .td-module-meta-info .td-post-views {
position: relative;
display: inline-block;
top: 2px;
margin-left: 14px;
color: #aaa;
}
.td_module_wrap .td-module-meta-info .td-post-views span {
margin-left: 5px;
}

result: http://screencast.com/t/Zk0KGdzOlo3

I hope this helps.
Thank you!

Post count: 24

Thanks Bogdan, I got it all done i just have to add

<?php echo $this->get_modules_views();?> in the modules.

unfortunalty your screenshot link doesnt work for that.
could you please resubmit?

thanks for that so much!

Post count: 1341
Post count: 22421

Sorry for the screenshot, you simply have to add the code in the module files corresponding to the blocks you want to have views: http://screencast.com/t/koCkDeey
Thanks.

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.