Hi guys,
You’d have to hack the plugin to achieve that. Here’s what you need to do:
1. In the plugin folder, find a file called stats.php and open it using a editor such as notepad or Adobe Dreamweaver.
2. Find this:
<div class="wpp-stats wpp-stats-active" id="wpp-daily">
<?php echo do_shortcode('[wpp range=today stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
<div class="wpp-stats" id="wpp-weekly">
<?php echo do_shortcode('[wpp range=weekly stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
<div class="wpp-stats" id="wpp-monthly">
<?php echo do_shortcode('[wpp range=monthly stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
<div class="wpp-stats" id="wpp-all">
<?php echo do_shortcode('[wpp range=all stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol>]'); ?>
</div>
… and replace with:
<div class="wpp-stats wpp-stats-active" id="wpp-daily">
<?php echo do_shortcode('[wpp range=today stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol> limit=20]'); ?>
</div>
<div class="wpp-stats" id="wpp-weekly">
<?php echo do_shortcode('[wpp range=weekly stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol> limit=20]'); ?>
</div>
<div class="wpp-stats" id="wpp-monthly">
<?php echo do_shortcode('[wpp range=monthly stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol> limit=20]'); ?>
</div>
<div class="wpp-stats" id="wpp-all">
<?php echo do_shortcode('[wpp range=all stats_views=1 order_by=views wpp_start=<ol> wpp_end=</ol> limit=20]'); ?>
</div>
… where limit=20
is the max number of posts you want to see at the WPP Stats panel.