Hi,
Please check your module files and see maybe comments,date and author are commented: http://screencast.com/t/5AannU4OB
Thanks!
Well, there is finite number of files in your theme folder root?
Maybe look at one of the “single” files for the single post, which is how WordPress refers to posts.
Perhaps … loop-single.php ?
Note the section
<div class="meta-info">
<?php echo $td_mod_single->get_author();?>
<?php echo $td_mod_single->get_date(false);?>
<?php echo $td_mod_single->get_views();?>
<?php echo $td_mod_single->get_comments();?>
</div>
then perhaps, in the /includes/modules/ folder …
say, maybe you’re using td_module_5.php
note the section
<div class="meta-info">
<?php echo $this->get_author();?>
<?php echo $this->get_date();?>
<?php echo $this->get_comments();?>
</div>
Great to go “exploring” in the files, as it’s pretty simple to change some basic stuff by locating the stuff based on logical naming structure.
Hope that helps 🙂
-
This reply was modified 11 years by
simchris.
Hi,
Sorry for misunderstanding! Please try Lucian’s solution from here: https://forum.tagdiv.com/topic/comment-and-post-view-count/#post-31049
I also tested and it works fine: http://screencast.com/t/3VHg24u59
Thanks!