The Pretty Link guys sent me this, it will echo the hits to the pretty links to have an actual hits counter. I edited 1 line, hope the syntax is still legit, it works regardless
PHP Code:
<!-- SHOW PRETTY LINK HITS -->
<?php
global $prli_link;
$myID = get_post_meta(get_the_ID(), '_pretty-link', true);
if($myID)
{
$data = $prli_link->getOne($myID, OBJECT, true);
echo $data->clicks.' Views';
}
?>
<!-- END SHOW PRETTY LINK HITS -->