Okay
  Public Ticket #146236
Post header
Closed

Comments

  • Daniel started the conversation
    Hi Nectar, Can you help me replace the .meta-comment-count in the post header to a function that count the number of readers in the actual post ex (.meta-read-count)? Thank you!
  •  997
    ThemeNectar replied

    Hey Daniel,

    unfortunately there's no quick way to do this - it would either require a good deal of custom development or the integration of a plugin that handles this. Here's a plugin I found quickly from a search that looks like it might be what you're after http://wordpress.org/plugins/simple-post-views-counter/

    Cheers :)

  •   Daniel replied privately
  •  997
    ThemeNectar replied

    Hey again!

    You can accomplish that by inserting the function into the files in includes/post-templates right after this:

    <div class="nectar-love-wrap">
    	<?php if( function_exists('nectar_love') ) nectar_love(); ?>
    </div><!--/nectar-love-wrap-->	

    Cheers :)

  • Daniel replied

    Hey man,

    Thanks a lot, works great!